New Theme

Get early access to our latest theme Linkk

Documentation

Learn how to get started with your Astro theme.

Documentation Under Development

Our comprehensive documentation is currently under active development. For now, please refer to the README file included with your theme for specific setup instructions and configuration details. We anticipate having our documentation portal completed by Q2 2025.

Installation

To get started with your theme, follow these steps:

cd your-theme
pnpm install
pnpm run dev

Project Structure

Your theme follows the standard Astro project structure:

├── src/
│   ├── components/
│   ├── layouts/
│   ├── pages/
│   ├── styles/
│   │   └── global.css    # Tailwind v4 configuration
│   └── consts.ts        # Theme configuration
├── public/
├── astro.config.mjs
└── package.json

Configuration

Your theme can be customized through two main files:

Theme Options

The src/consts.ts file contains theme-specific options that you can customize:

// src/consts.ts
export const SITE_TITLE = "Your Site Title"
export const SITE_DESCRIPTION = "Your site description"
// ... other theme options

Styling

Styling is handled through Tailwind CSS v4, which can be configured in src/styles/global.css.