Skip to content

Getting Started

All FutureThemes themes are actually Astro Integrations - just like Starlight!

This means they are very easy to install, update and use with your project!

Creating your project using a template

The easiest way to get up and running is to use one of our theme templates:

Terminal window
pnpm create astro@latest --template futurethemes/galaxy

Manual install

Alternatively, you can manually add the integration to an existing project:

Terminal window
pnpm add @futurethemes/galaxy

This will create a whole boilerplate project for you ready to instantly start creating content!

astro.config.mjs
import { defineConfig } from 'astro/config';
import GalaxyTheme from "@futurethemes/galaxy";
// https://astro.build/config
export default defineConfig({
integrations: [
GalaxyTheme({
siteName: 'Sitey McSiteFace',
}),
],
})

Next Steps

Now your site should be ready to configure! See all our configuration options for your theme in the sidebar!