Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 78edbc5f5a | |||
| a95e570046 | |||
| 2b4accd319 | |||
| abc6719a7f |
@@ -1,70 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "CollegeBound AI - Find Your Perfect College Match",
|
title: "CollegeBound AI - Find Your Perfect College Match", description: "AI-powered college matching, scholarship discovery, and essay building all in one place."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1432,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
|||||||
{ text: "View Demo", href: "#" },
|
{ text: "View Demo", href: "#" },
|
||||||
],
|
],
|
||||||
features: [
|
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: [
|
id: "premium", price: "$19/month", name: "Premium Plus", buttons: [
|
||||||
|
|||||||
Reference in New Issue
Block a user