A modern static site generator built with SvelteKit 5, mdsvex, and shadcn-svelte components. Features markdown-based content with embedded Svelte components, full static site generation, and beautiful UI components.
# Install dependencies
pnpm install
# Start development server
pnpm dev
# Build for production
pnpm build
# Preview production build
pnpm preview
src/
├── routes/
│ ├── +layout.svelte # Root layout with CSS import
│ ├── +layout.server.ts # Prerender configuration
│ ├── +page.svelte # Home page
│ ├── about/+page.svx # About page (markdown)
│ └── blog/hello-world/+page.svx # Blog post (markdown)
├── lib/components/ui/ # shadcn-svelte components
└── app.css # Tailwind CSS configuration
The site is configured for full static generation with: