feat(chapter2): set up styled app shell

Add the App Router page and nested layout, configure Tailwind and shadcn styling, include local fonts and background assets, and install the supporting UI and lint dependencies.
This commit is contained in:
jiawei
2026-08-30 10:20:06 +08:00
parent 5ce6f24569
commit a1401c68f5
37 changed files with 16086 additions and 119 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "radix-nova",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "",
"css": "src/app/styles/tailwind.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"rtl": false,
"aliases": {
"components": "@/app/_components/shadcn/ui",
"utils": "@/app/_components/shadcn/ui",
"ui": "@/app/_components/shadcn/utils",
"lib": "@/app/_components/shadcn/libs",
"hooks": "@/app/_components/shadcn/hooks"
},
"menuColor": "default",
"menuAccent": "subtle",
"registries": {}
}