Two files control how Birthday Wall presents itself to browsers, search engines, and visitors:Documentation Index
Fetch the complete documentation index at: https://help.helloazhenweb.top/llms.txt
Use this file to discover all available pages before exploring further.
lib/site-config.ts handles the site’s identity and metadata, while lib/nav-config.ts controls which pages appear in the navigation bar and in what order. You’ll typically update both when you first set up a new deployment.
Site identity — lib/site-config.ts
The siteConfig object exposes five fields that flow into <title> tags, Open Graph metadata, and the admin panel header.
Used as the browser tab title and the Open Graph
og:title value. Shown whenever someone shares a link to your site on social platforms. Default: "helloazhen | 生日空间".Mirrors
name and is used interchangeably in metadata components. Set both to the same value to keep titles consistent across the site.The meta description read by search engines and displayed in social link previews. Keep it under 160 characters. Default:
"为 TA 送上最特别的生日祝福".The heading shown at the top of the admin panel (
/admin). It does not affect the public-facing site. Default: "管理后台".The canonical base URL of your deployment. Read from the
NEXT_PUBLIC_SITE_URL environment variable, with a hardcoded fallback. This value is used when constructing absolute links in emails, share features, and OG tags. Default fallback: "https://helloazhen.com".Customization example
The
url field should exactly match your deployed domain. It is used when generating absolute links in emails and share features — a mismatch will produce broken links.Navigation — lib/nav-config.ts
The navConfig.pages array defines every entry in the top navigation bar. Each item maps to a PageConfig object:
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the page (e.g. "home", "radio") |
name | string | Label displayed in the nav bar |
path | string | Route path (e.g. "/", "/radio") |
icon | string | Emoji icon shown next to the label |
visible | boolean | Set to false to hide the page from the nav bar |
order | number | Controls the left-to-right display order; lower numbers appear first |
Default config
Customization example
To rename labels, reorder items, or hide pages you don’t need, edit the array directly:visible: false. The page still exists at /report — it just won’t appear as a navigation link.