diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..5139a30 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1395 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "InternMatch AI", description: "Enterprise-grade AI-powered Smart Internship Allocation Engine"}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + +