diff --git a/bun.lockb b/bun.lockb deleted file mode 100644 index d7b0a20..0000000 Binary files a/bun.lockb and /dev/null differ diff --git a/src/app/(pages)/layout.tsx b/src/app/(pages)/layout.tsx index a7dd500..b0e0a70 100644 --- a/src/app/(pages)/layout.tsx +++ b/src/app/(pages)/layout.tsx @@ -2,10 +2,12 @@ import type { Metadata, Viewport } from "next"; import { Inter } from "next/font/google"; import { ThemeProvider } from "@/components/theme-provider"; import "../globals.css"; -import { ReactElement } from "react"; +import { ReactElement, ReactNode } from "react"; import { TooltipProvider } from "@/components/ui/tooltip"; +import { cn } from "@/lib/utils"; +import { NextFont } from "next/dist/compiled/@next/font"; -const inter = Inter({ subsets: ["latin"] }); +const inter: NextFont = Inter({ subsets: ["latin"] }); /** * The metadata for this app. @@ -37,10 +39,10 @@ export const viewport: Viewport = { const RootLayout = ({ children, }: Readonly<{ - children: React.ReactNode; + children: ReactNode; }>): ReactElement => ( -
+