Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2ddd64de29 | |||
| 3a1f27f331 | |||
| 53dbb95cf3 |
@@ -1,54 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Open_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 poppins = Poppins({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["400", "500", "600", "700"],
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Learning Hub - Empower Your Educational Journey", description: "Discover world-class education programs. Flexible online courses, intensive bootcamps, and corporate training solutions for career transformation.", keywords: "online education, learning programs, bootcamp, career training, professional development, courses", openGraph: {
|
title: "Learning Hub", description: "Discover world-class education programs designed to unlock your potential."};
|
||||||
title: "Learning Hub - Transform Your Career", description: "Join thousands of successful learners. Explore flexible online courses, bootcamps, and corporate training.", type: "website", siteName: "Learning Hub", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/laughing-students-desktop_23-2147655933.jpg", alt: "Education center learning community"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Learning Hub - Empower Your Future", description: "World-class education programs designed for your success.", images: ["http://img.b2bpic.net/free-photo/laughing-students-desktop_23-2147655933.jpg"],
|
|
||||||
},
|
|
||||||
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={poppins.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1385,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ export default function LandingPage() {
|
|||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "How long does it take to complete a course?", content: "Course duration varies depending on the program. Online courses typically take 4-12 weeks with flexible scheduling, while bootcamps are intensive 8-12 week programs. You can check specific timelines for each course on the program details page."
|
id: "1", title: "How long does it take to complete a course?", content: "Course duration varies—<a href='#' style={{textDecoration: 'underline', cursor: 'pointer'}}>check specific timelines for each program</a>. Online courses typically take 4-12 weeks with flexible scheduling, while bootcamps are intensive 8-12 week programs."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", title: "What happens after I complete my course?", content: "Upon completion, you'll receive a professional certificate recognized by industry leaders. You'll also get lifetime access to course materials, career coaching sessions, and invitations to our exclusive alumni network and job board."
|
id: "2", title: "What happens after I complete my course?", content: "Upon completion, you'll receive a professional certificate recognized by industry leaders. You'll also get lifetime access to course materials, career coaching sessions, and invitations to our exclusive alumni network and job board."
|
||||||
|
|||||||
Reference in New Issue
Block a user