Initial commit: silicondeck/shadcn-dashboard-landing-template (nextjs-version) + CLAUDE.md

- Next.js 16.1.1 + React 19.2.3 + Tailwind v4 + shadcn/ui v3
- Template scaffold (App Router with (auth)/(dashboard)/landing route groups)
- pnpm v10 lockfile
- CLAUDE.md describing multi-tenant Appwrite architecture, 8 modules, Gitea+Coolify deploy
This commit is contained in:
kovakmedya
2026-04-30 02:28:30 +03:00
commit 29aa346f9e
256 changed files with 35982 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import type { Metadata } from "next";
import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { SidebarConfigProvider } from "@/contexts/sidebar-context";
import { inter } from "@/lib/fonts";
export const metadata: Metadata = {
title: "Shadcn Dashboard",
description: "A dashboard built with Next.js and shadcn/ui",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className={`${inter.variable} antialiased`}>
<body className={inter.className}>
<ThemeProvider defaultTheme="system" storageKey="nextjs-ui-theme">
<SidebarConfigProvider>
{children}
</SidebarConfigProvider>
</ThemeProvider>
</body>
</html>
);
}