4 Commits

Author SHA1 Message Date
8aa6d0a9bd Update src/app/page.tsx 2026-03-08 14:02:44 +00:00
614d90b17a Update src/app/layout.tsx 2026-03-08 14:02:43 +00:00
8114788157 Merge version_1 into main
Merge version_1 into main
2026-03-08 14:00:58 +00:00
e175457ae6 Merge version_1 into main
Merge version_1 into main
2026-03-08 13:59:45 +00:00
2 changed files with 18 additions and 42 deletions

View File

@@ -1,55 +1,32 @@
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";
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: '--font-geist-sans',
subsets: ['latin'],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: '--font-geist-mono',
subsets: ['latin'],
});
export const metadata: Metadata = {
title: "CodeLearn - Master Coding at Your Own Pace", description: "Learn coding from beginner to expert with interactive courses, real-world projects, and mentorship. Join 50,000+ successful learners today.", keywords: "coding courses, learn programming, web development, Python, JavaScript, online coding, programming education", robots: {
index: true,
follow: true,
},
openGraph: {
title: "CodeLearn - Master Coding at Your Own Pace", description: "Learn coding from beginner to expert with interactive courses, real-world projects, and mentorship.", type: "website", siteName: "CodeLearn", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfKRAUYaDLszeLQYjCJmj2Js2X/a-modern-vibrant-coding-learning-dashboa-1772978274282-c017a009.png", alt: "CodeLearn platform interface"},
],
},
twitter: {
card: "summary_large_image", title: "CodeLearn - Master Coding at Your Own Pace", description: "Learn coding from beginner to expert with interactive courses and mentorship.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfKRAUYaDLszeLQYjCJmj2Js2X/a-modern-vibrant-coding-learning-dashboa-1772978274282-c017a009.png"],
},
title: 'CodeLearn - Master Coding at Your Own Pace',
description: 'Join thousands of learners transforming their careers with our interactive coding platform.',
};
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={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1394,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -83,7 +83,7 @@ export default function LandingPage() {
]}
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "View All Courses", href: "#" }]}
buttons={[{ text: "Get Started", href: "#contact" }, { text: "View All Courses", href: "#" }]}
buttonAnimation="slide-up"
/>
</div>