diff --git a/app/layout.tsx b/app/layout.tsx index 976eb90..03c5239 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,20 +1,11 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Captive Portal", + description: "Welcome", }; export default function RootLayout({ @@ -24,8 +15,8 @@ export default function RootLayout({ }>) { return ( {children} diff --git a/package.json b/package.json index b7cdffa..ae2d8e3 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "postinstall": "node -e \"require('fs').copyFileSync('node_modules/pdfjs-dist/build/pdf.worker.min.mjs','public/pdf.worker.min.mjs')\"" }, "dependencies": { + "geist": "^1.4.2", "next": "16.2.4", "pdfjs-dist": "^4.7.76", "react": "19.2.4",