diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 88f2794..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1414 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "InternMatch AI - Smart Internship Allocation Engine", description: "Enterprise SaaS dashboard for AI-powered smart internship allocation using NLP embeddings and fairness algorithms. Built for the PM Internship Scheme hackathon.", keywords: "internship allocation, AI matching, SaaS dashboard, NLP, fairness audit, hackathon", metadataBase: new URL("https://internmatch-ai.example.com"), - alternates: { - canonical: "https://internmatch-ai.example.com" - }, - openGraph: { - title: "InternMatch AI", description: "Smart AI-based internship allocation engine leveraging NLP and global optimization", url: "https://internmatch-ai.example.com", siteName: "InternMatch AI", type: "website" - }, - twitter: { - card: "summary_large_image", title: "InternMatch AI - Hackathon Build 2026", description: "Enterprise SaaS dashboard for intelligent internship allocation" - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -