Merge version_1 into main #1
@@ -89,7 +89,7 @@ export default function ExplorePage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9f66vr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9f66vr&_wi=2",
|
||||
imageAlt: "Students exploring online tutorials",
|
||||
},
|
||||
]}
|
||||
@@ -115,7 +115,7 @@ export default function ExplorePage() {
|
||||
author: "Alex Johnson",
|
||||
description: "Learn the basics of Python programming from scratch. Perfect for beginners who want to start their coding journey with one of the most beginner-friendly languages.",
|
||||
tags: ["Programming", "Beginner", "Web Development"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw&_wi=2",
|
||||
imageAlt: "Python programming tutorial",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function ExplorePage() {
|
||||
author: "Sarah Williams",
|
||||
description: "Master modern design principles and create stunning user interfaces. Learn tools, workflows, and best practices used by professional designers worldwide.",
|
||||
tags: ["Design", "UI/UX", "Creative"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm&_wi=2",
|
||||
imageAlt: "UI UX design tutorial",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ export default function ExplorePage() {
|
||||
author: "Marcus Chen",
|
||||
description: "Discover proven strategies to grow your online presence. From SEO fundamentals to social media marketing, build skills that drive real business results.",
|
||||
tags: ["Marketing", "Business", "Digital"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0&_wi=2",
|
||||
imageAlt: "Digital marketing tutorial",
|
||||
},
|
||||
{
|
||||
@@ -142,7 +142,7 @@ export default function ExplorePage() {
|
||||
author: "Emma Rodriguez",
|
||||
description: "Transform raw data into actionable insights. Learn statistical analysis, visualization, and machine learning fundamentals with practical applications.",
|
||||
tags: ["Data Science", "Analytics", "Advanced"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw&_wi=2",
|
||||
imageAlt: "Data science and analytics",
|
||||
},
|
||||
]}
|
||||
@@ -193,7 +193,7 @@ export default function ExplorePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e&_wi=2"
|
||||
imageAlt="Community learning and collaboration"
|
||||
logoText="SkillShare"
|
||||
copyrightText="© 2025 SkillShare | Empowering Learning Communities"
|
||||
|
||||
@@ -1,28 +1,61 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { DM_Sans } 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 { DM_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SkillShare - Learn & Share Skills Online",
|
||||
description: "Join a community of learners and expert instructors. Share your skills, learn new abilities, and transform your career through collaborative education.",
|
||||
keywords: "online learning, skill tutorials, education platform, learn skills, teach online, course sharing",
|
||||
metadataBase: new URL("https://skillshare.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://skillshare.example.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "SkillShare - Collaborative Learning Platform",
|
||||
description: "Discover thousands of skill tutorials created by experts. Learn, grow, and share your expertise with a global community.",
|
||||
url: "https://skillshare.example.com",
|
||||
siteName: "SkillShare",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://skillshare.example.com/og-image.jpg",
|
||||
alt: "SkillShare - Learn and Share Skills",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "SkillShare - Learn Skills from Experts",
|
||||
description: "Join thousands learning new skills through community-created tutorials",
|
||||
images: ["https://skillshare.example.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${dmSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -94,7 +94,7 @@ export default function HomePage() {
|
||||
buttonAnimation="blur-reveal"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9f66vr",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9f66vr&_wi=1",
|
||||
imageAlt: "Students learning online together",
|
||||
},
|
||||
]}
|
||||
@@ -137,7 +137,7 @@ export default function HomePage() {
|
||||
author: "Alex Johnson",
|
||||
description: "Learn the basics of Python programming from scratch. Perfect for beginners who want to start their coding journey with one of the most beginner-friendly languages.",
|
||||
tags: ["Programming", "Beginner", "Web Development"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw&_wi=1",
|
||||
imageAlt: "Python programming tutorial",
|
||||
},
|
||||
{
|
||||
@@ -146,7 +146,7 @@ export default function HomePage() {
|
||||
author: "Sarah Williams",
|
||||
description: "Master modern design principles and create stunning user interfaces. Learn tools, workflows, and best practices used by professional designers worldwide.",
|
||||
tags: ["Design", "UI/UX", "Creative"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm&_wi=1",
|
||||
imageAlt: "UI UX design tutorial",
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
author: "Marcus Chen",
|
||||
description: "Discover proven strategies to grow your online presence. From SEO fundamentals to social media marketing, build skills that drive real business results.",
|
||||
tags: ["Marketing", "Business", "Digital"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0&_wi=1",
|
||||
imageAlt: "Digital marketing tutorial",
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@ export default function HomePage() {
|
||||
author: "Emma Rodriguez",
|
||||
description: "Transform raw data into actionable insights. Learn statistical analysis, visualization, and machine learning fundamentals with practical applications.",
|
||||
tags: ["Data Science", "Analytics", "Advanced"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw&_wi=1",
|
||||
imageAlt: "Data science and analytics",
|
||||
},
|
||||
]}
|
||||
@@ -383,7 +383,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e&_wi=1"
|
||||
imageAlt="Community learning and collaboration"
|
||||
logoText="SkillShare"
|
||||
copyrightText="© 2025 SkillShare | Empowering Learning Communities"
|
||||
|
||||
@@ -240,7 +240,7 @@ export default function PricingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e&_wi=4"
|
||||
imageAlt="Community learning and collaboration"
|
||||
logoText="SkillShare"
|
||||
copyrightText="© 2025 SkillShare | Empowering Learning Communities"
|
||||
|
||||
@@ -106,7 +106,7 @@ export default function TeachPage() {
|
||||
author: "Revenue Share Model",
|
||||
description: "Earn up to 70% of course revenue. Receive monthly payouts directly to your account with transparent earnings tracking.",
|
||||
tags: ["Income", "Flexible", "Transparent"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2v09xw&_wi=3",
|
||||
imageAlt: "Earnings and revenue",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function TeachPage() {
|
||||
author: "Built for Educators",
|
||||
description: "Use our intuitive content creation platform with video uploads, interactive quizzes, assignments, and student engagement analytics.",
|
||||
tags: ["Tools", "Analytics", "Interactive"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=q865wm&_wi=3",
|
||||
imageAlt: "Creator tools and features",
|
||||
},
|
||||
{
|
||||
@@ -124,7 +124,7 @@ export default function TeachPage() {
|
||||
author: "Instructor Network",
|
||||
description: "Join a community of expert instructors. Access resources, share teaching strategies, and collaborate with peers worldwide.",
|
||||
tags: ["Community", "Support", "Networking"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=92w7f0&_wi=3",
|
||||
imageAlt: "Community support",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ export default function TeachPage() {
|
||||
author: "Scale Your Impact",
|
||||
description: "Reach thousands of motivated students. Scale your courses, build your personal brand, and establish authority in your field.",
|
||||
tags: ["Scale", "Growth", "Brand"],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cs6ekw&_wi=3",
|
||||
imageAlt: "Growth and scale",
|
||||
},
|
||||
]}
|
||||
@@ -207,7 +207,7 @@ export default function TeachPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eoju8e&_wi=3"
|
||||
imageAlt="Community learning and collaboration"
|
||||
logoText="SkillShare"
|
||||
copyrightText="© 2025 SkillShare | Empowering Learning Communities"
|
||||
|
||||
Reference in New Issue
Block a user