Documentation

Everything you need to get started with Phoebeology templates.

Quick Start

After purchasing, you'll receive a ZIP file containing your template. Here's how to get started:

# 1. Unzip and navigate to the template folder

$ cd my-template

# 2. Install dependencies

$ npm install

# 3. Start the development server

$ npm run dev

Ready on http://localhost:3000

Project Structure

my-template/
├── src/
│   └── app/
│       ├── globals.css    # Tailwind imports
│       ├── layout.tsx     # Root layout
│       └── page.tsx       # Main page component
├── package.json           # Dependencies
├── tsconfig.json          # TypeScript config
├── postcss.config.mjs     # PostCSS config
└── README.md              # Template docs

Each template is a standard Next.js 15 app with the App Router. The main page component contains all the sections and a siteConfig object for easy customization.

Customization

Each template includes a siteConfig object at the top of the page component. This is where you customize your business details:

const siteConfig = {
  brand: {
    name: "Your Business Name",
    tagline: "Your Tagline Here"
  },
  contact: {
    phone: "(555) 123-4567",
    email: "hello@yourbusiness.com",
    address: "123 Main Street, City"
  },
  links: {
    instagram: "https://instagram.com/yourbusiness",
    facebook: "https://facebook.com/yourbusiness"
  }
};

Simply update these values and the entire site will reflect your changes.

Styling

Templates use Tailwind CSS v4 for styling. Colors are typically defined inline for easy customization:

To change colors:

  1. Search for hex color codes (e.g., #0a0a0a)
  2. Replace with your brand colors
  3. Use find-and-replace for consistency

For Tailwind utility classes, refer to the official Tailwind documentation.

Deployment

Deploy your template to any platform that supports Next.js:

Vercel (Recommended)

  1. Push to GitHub
  2. Import to Vercel
  3. Deploy automatically

Netlify

  1. Push to GitHub
  2. Connect to Netlify
  3. Set build command: npm run build

# Build for production

$ npm run build

# Start production server

$ npm start

Tech Stack

Next.js 15

App Router, Server Components

React 19

Latest React with hooks

Tailwind CSS v4

Utility-first styling

TypeScript

Full type safety

Lucide Icons

Beautiful icon library

Mobile-First

Responsive by default

Need Help?

Can't find what you're looking for? Get in touch.

Contact Support