mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 22:03:44 +00:00
Replace custom CSS module UI with shadcn radix-luma components, Tailwind v4, and Manrope font. Remove packages/ui.
25 lines
511 B
TypeScript
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>
|
|
);
|
|
}
|