betterNAS/apps/web/app/layout.tsx
Harivansh Rathi b74db855c8 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.
2026-04-01 18:11:52 +00:00

25 lines
511 B
TypeScript

import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import "./globals.css";
const manrope = Manrope({
subsets: ["latin"],
variable: "--font-sans",
});
export const metadata: Metadata = {
title: "betterNAS",
description: "Mount NAS exports from your browser",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={manrope.variable}>
<body>{children}</body>
</html>
);
}