Skip to content

StarryKit/website

Repository files navigation

StarryKit Website

The official StarryKit website, blog, and documentation.

Tech Stack

  • Framework: Next.js (App Router)
  • Styling: Tailwind CSS
  • Content: MDX (blog posts & docs)
  • Deployment: Vercel

Getting Started

npm install
npm run dev

Open http://localhost:3000.

Project Structure

src/
├── app/
│   ├── page.tsx          # Landing page
│   ├── blog/
│   │   ├── page.tsx      # Blog listing
│   │   └── [slug]/       # Blog post detail
│   └── docs/
│       ├── page.tsx       # Docs listing
│       └── [...slug]/     # Doc page with sidebar
├── components/
│   ├── Navbar.tsx
│   ├── Footer.tsx
│   └── StarryBackground.tsx
└── lib/
    ├── blog.ts
    └── docs.ts
content/
├── blog/                  # MDX blog posts
└── docs/                  # MDX documentation

Writing Content

Blog Posts

Create .mdx files in content/blog/:

---
title: "Post Title"
description: "A brief description."
date: "2026-05-11"
author: "Author Name"
tags: ["tag1", "tag2"]
---

Your content here...

Documentation

Create .mdx files in content/docs/:

---
title: "Page Title"
description: "A brief description."
order: 1
---

Your content here...

License

MIT

About

StarryKit official website, blog, and documents

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors