Merge version_2 into main #4
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } 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 archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers. Watch engaging content on growth, creativity, and digital trends. New videos every Wednesday & Friday.", keywords: "YouTube channel, content creator, video content, subscribe, community", metadataBase: new URL("https://creatorhub.channel"),
|
||||
alternates: {
|
||||
canonical: "https://creatorhub.channel"},
|
||||
openGraph: {
|
||||
title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers and grow with our community.", url: "https://creatorhub.channel", siteName: "CreatorHub", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcDuZ1vUNrOjv0jXMLV72cHhQb/a-dynamic-youtube-channel-hero-banner-sh-1772883270520-da706ce5.png", alt: "A dynamic YouTube channel hero banner showing a content creator in a modern studio setup with profes"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "YouTube Channel - Subscribe Now | CreatorHub", description: "Join 250K+ subscribers and grow with our community.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcDuZ1vUNrOjv0jXMLV72cHhQb/a-dynamic-youtube-channel-hero-banner-sh-1772883270520-da706ce5.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "CreatorHub - Grow Your YouTube Channel", description: "Build meaningful connections with your audience. Share your best content, showcase your growth, and inspire your community."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -138,9 +138,9 @@ export default function LandingPage() {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcDuZ1vUNrOjv0jXMLV72cHhQb/a-fourth-professional-headshot-showcasin-1772883270772-24d7338a.png", imageAlt: "Taylor Kim testimonial"},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "50K+", label: "Happy Subscribers" },
|
||||
{ value: "98%", label: "Positive Feedback" },
|
||||
{ value: "200+", label: "Collaborative Projects" },
|
||||
{ value: "Average 50K Views Per Video", label: "Consistent Reach" },
|
||||
{ value: "15% Monthly Growth Rate", label: "Accelerating Growth" },
|
||||
{ value: "98% Satisfaction Score", label: "Creator Testimonials" },
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user