https://github.com/liambeeton/public-notes
Public Notes
https://github.com/liambeeton/public-notes
mdx nextjs nextra react
Last synced: about 2 months ago
JSON representation
Public Notes
- Host: GitHub
- URL: https://github.com/liambeeton/public-notes
- Owner: liambeeton
- License: mit
- Created: 2025-03-03T12:14:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-03T13:38:45.000Z (over 1 year ago)
- Last Synced: 2025-03-03T14:32:49.168Z (over 1 year ago)
- Topics: mdx, nextjs, nextra, react
- Language: MDX
- Homepage: https://liambeeton.com
- Size: 1.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Public Notes
My personal public notes site built with [FumaDocs](https://fumadocs.vercel.app) and Next.js.
## Stack
- **[Next.js 16](https://nextjs.org)** — App Router, static site generation
- **[FumaDocs](https://fumadocs.vercel.app)** — docs framework with sidebar, ToC, and full-text search
- **[Tailwind CSS v4](https://tailwindcss.com)** — styling
- **[pnpm](https://pnpm.io)** — package manager
## Development
```sh
pnpm install
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000).
## Adding a Note
Create a new `.mdx` file in `content/docs/`:
```sh
content/docs/my-new-note.mdx
```
Add frontmatter at the top:
```mdx
---
title: My New Note
description: A short description.
---
Content goes here.
```
Then add the filename (without extension) to `content/docs/meta.json` to control its position in the sidebar.
## Deployment
Deployed on [Vercel](https://vercel.com). Push to `main` to deploy.
## Source
Dotfiles referenced in the Mac setup note: [github.com/liambeeton/dotfiles](https://github.com/liambeeton/dotfiles)