diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 39d6973..9d21995 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,70 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CollegeBound AI - Find Your Perfect College Match", - description: "AI-powered college matching, scholarship finder, and essay builder. Discover your best college fit and unlock scholarships. Start free today.", - keywords: "college search, college matching, scholarship finder, essay builder, college advisor, AI education, SAT prep, college applications", - metadataBase: new URL("https://collegebound.ai"), - alternates: { - canonical: "https://collegebound.ai", - }, - openGraph: { - title: "CollegeBound AI - Find Your Perfect College Match", - description: "Discover colleges where you'll thrive, find scholarships you qualify for, and build compelling essays—all with AI guidance.", - url: "https://collegebound.ai", - siteName: "CollegeBound AI", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVSWx5frvGpGY2xrUlHtBGdS2O/a-modern-analytics-dashboard-showing-col-1772676362639-e90eacee.png", - alt: "CollegeBound AI Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CollegeBound AI - Find Your Perfect College Match", - description: "AI-powered college matching and scholarship discovery for high school students.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVSWx5frvGpGY2xrUlHtBGdS2O/a-modern-analytics-dashboard-showing-col-1772676362639-e90eacee.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CollegeBound AI - Find Your Perfect College Match", description: "AI-powered college matching, scholarship discovery, and essay building all in one place."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}