chore(site): added site

This commit is contained in:
Nicholas Kissel 2026-01-25 19:07:05 -08:00
parent 29b159ca20
commit c6e3df0569
48 changed files with 2087 additions and 43 deletions

11
website/astro.config.mjs Normal file
View file

@ -0,0 +1,11 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
output: 'static',
integrations: [
react(),
tailwind()
]
});