Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a10e158570 |
223
src/app/page.tsx
223
src/app/page.tsx
@@ -33,25 +33,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Videos",
|
name: "Videos", id: "videos"},
|
||||||
id: "videos",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Community",
|
name: "Community", id: "community"},
|
||||||
id: "community",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="CreatorHub"
|
brandName="CreatorHub"
|
||||||
/>
|
/>
|
||||||
@@ -60,35 +50,26 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Welcome to Channel Name — Stories Worth Watching"
|
title="Welcome to Channel Name — Stories Worth Watching"
|
||||||
description="Explore exclusive behind-the-scenes content, join our community, and never miss an upload. Subscribe now and be part of something bigger."
|
description="Explore exclusive behind-the-scenes content, join our community, and never miss an upload. Subscribe now and be part of something bigger."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Join Community", href: "#community" },
|
||||||
|
{ text: "Explore Content", href: "#videos" }
|
||||||
|
]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/security-guard-workspace_23-2150321697.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/security-guard-workspace_23-2150321697.jpg", imageAlt: "Channel Trailer Intro"},
|
||||||
imageAlt: "Channel Trailer Intro",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-modern-techno-background-with-abstract-cyber-particles_1048-12198.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/3d-modern-techno-background-with-abstract-cyber-particles_1048-12198.jpg", imageAlt: "Live Streaming Preview"},
|
||||||
imageAlt: "Live Streaming Preview",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/crystal-balls-with-blue-background_23-2150439174.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/crystal-balls-with-blue-background_23-2150439174.jpg", imageAlt: "Behind the Scenes Snap"},
|
||||||
imageAlt: "Behind the Scenes Snap",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-as-photographer_52683-110073.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-working-as-photographer_52683-110073.jpg", imageAlt: "Latest Video Thumbnail"},
|
||||||
imageAlt: "Latest Video Thumbnail",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-neon-lights-wonder-wheel_23-2148328071.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/abstract-neon-lights-wonder-wheel_23-2148328071.jpg", imageAlt: "Community Event Highlights"},
|
||||||
imageAlt: "Community Event Highlights",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-network-computer-connection-server-lan-concept_53876-13745.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/digital-network-computer-connection-server-lan-concept_53876-13745.jpg", imageAlt: "Studio Setup Tour"},
|
||||||
imageAlt: "Studio Setup Tour",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
@@ -101,19 +82,13 @@ export default function LandingPage() {
|
|||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
icon: Users,
|
icon: Users,
|
||||||
label: "Community Members",
|
label: "Community Members", value: "1.2M+"},
|
||||||
value: "1.2M+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Video,
|
icon: Video,
|
||||||
label: "Total Uploads",
|
label: "Total Uploads", value: "500+"},
|
||||||
value: "500+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Award,
|
icon: Award,
|
||||||
label: "Years Active",
|
label: "Years Active", value: "5+"},
|
||||||
value: "5+",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -126,20 +101,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Tech Deep Dives",
|
title: "Tech Deep Dives", description: "Analyzing the latest trends in technology with a focus on real-world impacts.", imageSrc: "http://img.b2bpic.net/free-photo/female-influencer-setting-up-equipment-viral-video_482257-115510.jpg"},
|
||||||
description: "Analyzing the latest trends in technology with a focus on real-world impacts.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/female-influencer-setting-up-equipment-viral-video_482257-115510.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Creative Masterclasses",
|
title: "Creative Masterclasses", description: "Hands-on tutorials for budding creators looking to up their production game.", imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-smartphone-futuristic-abstract-illuminate-line-dot-wireless-connection-wave-with-triangle-bright-blue-background-mobile-banking-shopping-online-concept-technology-future_493343-29987.jpg"},
|
||||||
description: "Hands-on tutorials for budding creators looking to up their production game.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-holding-smartphone-futuristic-abstract-illuminate-line-dot-wireless-connection-wave-with-triangle-bright-blue-background-mobile-banking-shopping-online-concept-technology-future_493343-29987.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Community Highlights",
|
title: "Community Highlights", description: "Showcasing the incredible projects our community members have been building.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-male-self-care-items_23-2150347104.jpg"},
|
||||||
description: "Showcasing the incredible projects our community members have been building.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-male-self-care-items_23-2150347104.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Latest Featured Stories"
|
title="Latest Featured Stories"
|
||||||
description="Dive into our most popular content, hand-picked and curated just for you."
|
description="Dive into our most popular content, hand-picked and curated just for you."
|
||||||
@@ -154,41 +120,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Channel Logo Hoodie", price: "$55.00", imageSrc: "http://img.b2bpic.net/free-photo/sustainability-concept-with-blank-geometric-forms-growing-plant_23-2148994245.jpg"},
|
||||||
name: "Channel Logo Hoodie",
|
|
||||||
price: "$55.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/sustainability-concept-with-blank-geometric-forms-growing-plant_23-2148994245.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Creator Masterclass PDF", price: "$29.00", imageSrc: "http://img.b2bpic.net/free-photo/fabulous-life-shopping-online-feminine_53876-125599.jpg"},
|
||||||
name: "Creator Masterclass PDF",
|
|
||||||
price: "$29.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fabulous-life-shopping-online-feminine_53876-125599.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Official Access Pass", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-green-card-application_23-2149601365.jpg"},
|
||||||
name: "Official Access Pass",
|
|
||||||
price: "$15.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-green-card-application_23-2149601365.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Tech Sticker Pack", price: "$10.00", imageSrc: "http://img.b2bpic.net/free-photo/afro-hair-style-doing-okay-gesture_140725-36572.jpg"},
|
||||||
name: "Tech Sticker Pack",
|
|
||||||
price: "$10.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/afro-hair-style-doing-okay-gesture_140725-36572.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Event Access Badge", price: "$20.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-black-friday-label_23-2148665761.jpg"},
|
||||||
name: "Event Access Badge",
|
|
||||||
price: "$20.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-with-black-friday-label_23-2148665761.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Signature Coffee Mug", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-woman-laying-ground_23-2149409757.jpg"},
|
||||||
name: "Signature Coffee Mug",
|
|
||||||
price: "$18.00",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-woman-laying-ground_23-2149409757.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Official Merch Shop"
|
title="Official Merch Shop"
|
||||||
description="Support the channel and look your best with our premium, limited-edition collections."
|
description="Support the channel and look your best with our premium, limited-edition collections."
|
||||||
@@ -202,40 +144,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Miller", role: "Subscriber", testimonial: "I've learned so much about production from this channel. Absolutely life-changing!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-posing_23-2149271087.jpg"},
|
||||||
name: "Sarah Miller",
|
|
||||||
role: "Subscriber",
|
|
||||||
testimonial: "I've learned so much about production from this channel. Absolutely life-changing!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-posing_23-2149271087.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Alex Rivera", role: "Supporter", testimonial: "The community atmosphere is so encouraging. It's more than just videos.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-holding-hands-head-white-t-shirt-hat-looking-wistful_176474-35594.jpg"},
|
||||||
name: "Alex Rivera",
|
|
||||||
role: "Supporter",
|
|
||||||
testimonial: "The community atmosphere is so encouraging. It's more than just videos.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-holding-hands-head-white-t-shirt-hat-looking-wistful_176474-35594.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "John Doe", role: "Sponsor", testimonial: "Partnering with this channel has been one of the best moves for our brand.", imageSrc: "http://img.b2bpic.net/free-photo/man-woman-business-workers-smiling-confident-standing-with-arms-crossed-gesture-office_839833-26991.jpg"},
|
||||||
name: "John Doe",
|
|
||||||
role: "Sponsor",
|
|
||||||
testimonial: "Partnering with this channel has been one of the best moves for our brand.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-business-workers-smiling-confident-standing-with-arms-crossed-gesture-office_839833-26991.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Emily Chen", role: "Viewer", testimonial: "The production quality keeps getting better. I never miss a notification.", imageSrc: "http://img.b2bpic.net/free-photo/young-african-man-summer-clothes-holding-inflatable-ring_171337-14653.jpg"},
|
||||||
name: "Emily Chen",
|
|
||||||
role: "Viewer",
|
|
||||||
testimonial: "The production quality keeps getting better. I never miss a notification.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-african-man-summer-clothes-holding-inflatable-ring_171337-14653.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Mark Stevens", role: "Member", testimonial: "I love the exclusive perks. Being part of the inner circle feels special.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-cup-headphones-red-background-high-quality-photo_114579-60851.jpg"},
|
||||||
name: "Mark Stevens",
|
|
||||||
role: "Member",
|
|
||||||
testimonial: "I love the exclusive perks. Being part of the inner circle feels special.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-cup-headphones-red-background-high-quality-photo_114579-60851.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Fan Stories"
|
title="Fan Stories"
|
||||||
description="What our amazing community has to say about their journey with us."
|
description="What our amazing community has to say about their journey with us."
|
||||||
@@ -247,14 +164,7 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Discord Server",
|
"Discord Server", "Twitter Community", "Instagram Creator Hub", "YouTube Members", "Patreon Inner Circle", "Reddit Forum", "Telegram Updates"]}
|
||||||
"Twitter Community",
|
|
||||||
"Instagram Creator Hub",
|
|
||||||
"YouTube Members",
|
|
||||||
"Patreon Inner Circle",
|
|
||||||
"Reddit Forum",
|
|
||||||
"Telegram Updates",
|
|
||||||
]}
|
|
||||||
title="Join Our Digital Community"
|
title="Join Our Digital Community"
|
||||||
description="Connect with fellow creators and fans across all our platforms."
|
description="Connect with fellow creators and fans across all our platforms."
|
||||||
/>
|
/>
|
||||||
@@ -265,20 +175,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "q1",
|
id: "q1", title: "How can I collaborate?", content: "Reach out via our contact page with your partnership inquiries."},
|
||||||
title: "How can I collaborate?",
|
|
||||||
content: "Reach out via our contact page with your partnership inquiries.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q2",
|
id: "q2", title: "Where can I buy merch?", content: "You can find all official items in our shop section."},
|
||||||
title: "Where can I buy merch?",
|
|
||||||
content: "You can find all official items in our shop section.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "q3",
|
id: "q3", title: "How do I become a member?", content: "Join our official membership program via the link in our footer."},
|
||||||
title: "How do I become a member?",
|
|
||||||
content: "Join our official membership program via the link in our footer.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Frequently Asked Questions"
|
sideTitle="Frequently Asked Questions"
|
||||||
sideDescription="Find quick answers to common questions about our content and community."
|
sideDescription="Find quick answers to common questions about our content and community."
|
||||||
@@ -290,8 +191,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Connect With Us"
|
tag="Connect With Us"
|
||||||
title="Let's Get in Touch"
|
title="Let's Get in Touch"
|
||||||
description="Have inquiries, partnership requests, or just want to say hi? We'd love to hear from you."
|
description="Have inquiries, partnership requests, or just want to say hi? We'd love to hear from you."
|
||||||
@@ -303,54 +203,33 @@ export default function LandingPage() {
|
|||||||
logoText="CreatorHub"
|
logoText="CreatorHub"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Content",
|
title: "Content", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "All Videos",
|
label: "All Videos", href: "#videos"},
|
||||||
href: "#videos",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Behind the Scenes",
|
label: "Behind the Scenes", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Masterclasses",
|
label: "Masterclasses", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Sponsorship",
|
label: "Sponsorship", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms",
|
label: "Terms", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support",
|
title: "Support", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Merch Support",
|
label: "Merch Support", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "FAQ",
|
label: "FAQ", href: "#faq"},
|
||||||
href: "#faq",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -360,4 +239,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user