Merge version_1 into main #1
@@ -122,7 +122,7 @@ export default function ContactPage() {
|
||||
icon: Phone,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg?_wi=3"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -90,28 +90,28 @@ export default function CoursesPage() {
|
||||
id: "course-1",
|
||||
name: "Fundamentals of Web Development",
|
||||
price: "Beginner",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg?_wi=3",
|
||||
imageAlt: "Web Development Course",
|
||||
},
|
||||
{
|
||||
id: "course-2",
|
||||
name: "Advanced JavaScript & React",
|
||||
price: "Intermediate",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg?_wi=3",
|
||||
imageAlt: "Advanced JavaScript Course",
|
||||
},
|
||||
{
|
||||
id: "course-3",
|
||||
name: "Full Stack Development Masterclass",
|
||||
price: "Advanced",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg?_wi=3",
|
||||
imageAlt: "Full Stack Course",
|
||||
},
|
||||
{
|
||||
id: "course-4",
|
||||
name: "Cloud Architecture & DevOps",
|
||||
price: "Expert",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg?_wi=3",
|
||||
imageAlt: "Cloud DevOps Course",
|
||||
},
|
||||
]}
|
||||
@@ -136,28 +136,28 @@ export default function CoursesPage() {
|
||||
id: "feature-1",
|
||||
title: "HD Video Content",
|
||||
tags: ["1080p", "Downloadable"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg?_wi=4",
|
||||
imageAlt: "HD Video Quality",
|
||||
},
|
||||
{
|
||||
id: "feature-2",
|
||||
title: "Interactive Lessons",
|
||||
tags: ["Quizzes", "Exercises"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg?_wi=4",
|
||||
imageAlt: "Interactive Learning",
|
||||
},
|
||||
{
|
||||
id: "feature-3",
|
||||
title: "Live Support",
|
||||
tags: ["Chat", "Forums"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg?_wi=4",
|
||||
imageAlt: "Live Support",
|
||||
},
|
||||
{
|
||||
id: "feature-4",
|
||||
title: "Lifetime Access",
|
||||
tags: ["Always Available", "Updates"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg?_wi=4",
|
||||
imageAlt: "Lifetime Access",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -106,7 +106,7 @@ export default function DashboardPage() {
|
||||
icon: Award,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
|
||||
@@ -1,29 +1,43 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "LearnHub - Online Learning Platform",
|
||||
description: "Secure access to professional video courses. Log in with your email and license key to access comprehensive learning materials.",
|
||||
keywords: "online learning, video courses, education platform, professional development",
|
||||
openGraph: {
|
||||
title: "LearnHub - Online Learning Platform",
|
||||
description: "Access professional video courses and enhance your skills",
|
||||
siteName: "LearnHub",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "LearnHub - Online Learning Platform",
|
||||
description: "Secure online learning with professional video courses",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +46,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +60,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -141,7 +141,7 @@ export default function HomePage() {
|
||||
icon: Award,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/template-user-panel-dashboard_23-2148368852.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
textboxLayout="default"
|
||||
@@ -168,28 +168,28 @@ export default function HomePage() {
|
||||
id: "course-1",
|
||||
name: "Fundamentals of Web Development",
|
||||
price: "Beginner",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg?_wi=1",
|
||||
imageAlt: "Web Development Course",
|
||||
},
|
||||
{
|
||||
id: "course-2",
|
||||
name: "Advanced JavaScript & React",
|
||||
price: "Intermediate",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg?_wi=1",
|
||||
imageAlt: "Advanced JavaScript Course",
|
||||
},
|
||||
{
|
||||
id: "course-3",
|
||||
name: "Full Stack Development Masterclass",
|
||||
price: "Advanced",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg?_wi=1",
|
||||
imageAlt: "Full Stack Course",
|
||||
},
|
||||
{
|
||||
id: "course-4",
|
||||
name: "Cloud Architecture & DevOps",
|
||||
price: "Expert",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg?_wi=1",
|
||||
imageAlt: "Cloud DevOps Course",
|
||||
},
|
||||
]}
|
||||
@@ -214,28 +214,28 @@ export default function HomePage() {
|
||||
id: "feature-1",
|
||||
title: "HD Video Content",
|
||||
tags: ["1080p", "Downloadable"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/gradient-e-learning-template_23-2149955899.jpg?_wi=2",
|
||||
imageAlt: "HD Video Quality",
|
||||
},
|
||||
{
|
||||
id: "feature-2",
|
||||
title: "Interactive Lessons",
|
||||
tags: ["Quizzes", "Exercises"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/online-study-banner-template_23-2148813631.jpg?_wi=2",
|
||||
imageAlt: "Interactive Learning",
|
||||
},
|
||||
{
|
||||
id: "feature-3",
|
||||
title: "Live Support",
|
||||
tags: ["Chat", "Forums"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/hand-drawn-language-learning-facebook-template_23-2150134743.jpg?_wi=2",
|
||||
imageAlt: "Live Support",
|
||||
},
|
||||
{
|
||||
id: "feature-4",
|
||||
title: "Lifetime Access",
|
||||
tags: ["Always Available", "Updates"],
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/education-template-design_23-2151068952.jpg?_wi=2",
|
||||
imageAlt: "Lifetime Access",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user