5 Commits

Author SHA1 Message Date
6df2bbcf68 Merge version_2 into main
Merge version_2 into main
2026-03-07 03:54:02 +00:00
84ae1e7fd9 Update src/app/page.tsx 2026-03-07 03:53:58 +00:00
855cb3e168 Update src/app/layout.tsx 2026-03-07 03:53:57 +00:00
48ee52757c Merge version_1 into main
Merge version_1 into main
2026-03-07 03:39:06 +00:00
638737730a Merge version_1 into main
Merge version_1 into main
2026-03-07 03:37:47 +00:00
2 changed files with 15 additions and 64 deletions

View File

@@ -1,76 +1,28 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Learnify - AI-Powered Personalized Learning for Students", title: "Learnify - AI-Powered Personalized Learning for Grades 5-12", description: "Master any subject with AI-powered personalized learning. Compete with friends, earn badges, and unlock your full potential through gamified education."};
description: "Master any subject with AI-generated quizzes, real-time competitions, and personalized learning plans. Join thousands of students grades 5-12 transforming their education with Learnify.",
keywords: "ai learning platform, personalized education, quiz generator, gamified learning, student success, study app, educational ai",
metadataBase: new URL("https://learnify.edu"),
alternates: {
canonical: "https://learnify.edu",
},
openGraph: {
title: "Learnify - Transform Your Learning with AI",
description: "Personalized education platform with AI quizzes, real-time competitions, and gamified learning for students grades 5-12",
url: "https://learnify.edu",
siteName: "Learnify",
type: "website",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQT8k0g2M9z3UTkzFiQ2zubsR1/modern-educational-dashboard-interface-s-1772854600527-b45cf70e.png",
alt: "Learnify AI-powered learning dashboard",
},
],
},
twitter: {
card: "summary_large_image",
title: "Learnify - AI-Powered Learning Platform",
description: "Personalized education with AI quizzes and gamified learning for students",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQT8k0g2M9z3UTkzFiQ2zubsR1/modern-educational-dashboard-interface-s-1772854600527-b45cf70e.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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1438,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -231,7 +231,7 @@ export default function HomePage() {
tag="Get In Touch" tag="Get In Touch"
tagIcon={Mail} tagIcon={Mail}
title="Ready to Transform Your Learning?" title="Ready to Transform Your Learning?"
description="Join thousands of students already learning smarter with Learnify. Get started free today and experience personalized education powered by AI." description="Join thousands of students already learning smarter with Learnify. Limited seats available for April cohorts—get 30% off when you start this week!"
buttons={[ buttons={[
{ text: "Start Free Trial", href: "/dashboard" }, { text: "Start Free Trial", href: "/dashboard" },
{ text: "Schedule Demo", href: "/contact" }, { text: "Schedule Demo", href: "/contact" },
@@ -250,4 +250,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }