Migrate apps/web to shadcn/ui with preset b2D1F1IZv

Replace custom CSS module UI with shadcn radix-luma components,
Tailwind v4, and Manrope font. Remove packages/ui.
This commit is contained in:
Harivansh Rathi 2026-04-01 18:11:52 +00:00
parent 73e4d026bb
commit b74db855c8
24 changed files with 6215 additions and 774 deletions

View file

@ -1,20 +1,15 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import { Manrope } from "next/font/google";
import "./globals.css";
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff",
variable: "--font-geist-mono",
const manrope = Manrope({
subsets: ["latin"],
variable: "--font-sans",
});
export const metadata: Metadata = {
title: "betterNAS",
description:
"Contract-first monorepo for NAS mounts and optional cloud access",
description: "Mount NAS exports from your browser",
};
export default function RootLayout({
@ -23,10 +18,8 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
<html lang="en" className={manrope.variable}>
<body>{children}</body>
</html>
);
}