Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 05:07:35 +00:00
2 changed files with 12 additions and 61 deletions

View File

@@ -1,71 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "EduLearn Academy - Learn New Skills Online",
description: "Access 500+ expert-led courses in web development, data science, digital marketing, and more. Start learning today with flexible schedules and lifetime access.",
keywords: "online learning, courses, education platform, web development, data science, professional development",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "EduLearn Academy - Transform Your Career",
description: "Join 125K+ students learning new skills online. Expert instructors, flexible schedules, certified courses.",
type: "website",
siteName: "EduLearn Academy",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg",
alt: "EduLearn Academy - Online Learning Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "Learn New Skills Online - EduLearn Academy",
description: "Expert-led courses in tech, business, and creative skills. Start your learning journey today.",
images: [
"http://img.b2bpic.net/free-photo/young-girl-listening-educational-documentary-laptop-takes-notes_482257-126301.jpg",
],
},
};
title: "EduLearn - Expert-Led Online Courses", description: "Join thousands of students transforming their careers through comprehensive, industry-aligned educational programs."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1433,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -143,7 +143,10 @@ export default function HomePage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Explore Courses", href: "/courses" }]}
buttons={[
{ text: "Explore Courses", href: "/courses" },
{ text: "View Pricing", href: "#pricing" },
]}
buttonAnimation="slide-up"
/>
</div>
@@ -252,4 +255,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}