Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 78edbc5f5a | |||
| a95e570046 | |||
| 2b4accd319 | |||
| abc6719a7f |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1432,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
{ text: "View Demo", href: "#" },
|
||||
],
|
||||
features: [
|
||||
"Unlimited college matches with detailed analysis", "Full scholarship database (10+ scholarships)", "AI essay builder with personalized strategies", "College acceptance rate estimates", "Tuition range predictions", "Priority email support", "Mobile app access", "Save and compare colleges"],
|
||||
"AI Essay Builder Included", "Unlimited college matches with detailed analysis", "Full scholarship database (10+ scholarships)", "Personalized essay themes and outlines", "College acceptance rate estimates", "Tuition range predictions", "Priority email support", "Mobile app access", "Save and compare colleges"],
|
||||
},
|
||||
{
|
||||
id: "premium", price: "$19/month", name: "Premium Plus", buttons: [
|
||||
@@ -305,4 +305,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user