Skip to content

Getting Started

Learn how to install and set up the Nebula theme for your project.

Installation

Getting started with Nebula is quick and easy. Follow these steps to set up your project.

Prerequisites

Before you begin, make sure you have:

  • Node.js 18.0 or higher
  • pnpm (recommended) or npm
  • A code editor (VS Code recommended)

Quick Start

  1. Clone the repository
git clone https://github.com/your-username/nebula-theme.git
cd nebula-theme
  1. Install dependencies
pnpm install
  1. Start the development server
pnpm dev
  1. Open your browser

Navigate to http://localhost:4321 to see your site.

Project Structure

nebula-theme/
├── src/
│   ├── components/     # Reusable components
│   ├── content/        # Blog, docs, portfolio content
│   ├── layouts/        # Page layouts
│   ├── lib/            # Utilities and helpers
│   ├── pages/          # Route pages
│   └── styles/         # Global styles
├── public/             # Static assets
├── astro.config.mjs    # Astro configuration
└── tailwind.config.mjs # Tailwind configuration

Next Steps