Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8fbc49def3 | |||
| cb87991a44 | |||
| 4fe88dda49 | |||
| 516e66339a | |||
| a2888fc634 |
@@ -1,58 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "CreatorHub - Grow Your YouTube Channel", description: "Build meaningful connections with your audience. Share your best content, showcase your growth, and inspire your community."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</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"},
|
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={[
|
kpiItems={[
|
||||||
{ value: "50K+", label: "Happy Subscribers" },
|
{ value: "Average 50K Views Per Video", label: "Consistent Reach" },
|
||||||
{ value: "98%", label: "Positive Feedback" },
|
{ value: "15% Monthly Growth Rate", label: "Accelerating Growth" },
|
||||||
{ value: "200+", label: "Collaborative Projects" },
|
{ value: "98% Satisfaction Score", label: "Creator Testimonials" },
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user