Update src/app/page.tsx

This commit is contained in:
2026-03-03 04:49:06 +00:00
parent bcfc6cb8c8
commit 56a09cfc2e

View File

@@ -10,6 +10,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, MessageCircle, Zap } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -22,8 +23,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Membership", href: "/membership" },
@@ -31,29 +31,27 @@ export default function HomePage() {
],
},
{
title: "Community",
items: [
title: "Community", items: [
{ label: "Discord Server", href: "https://discord.com" },
{ label: "Event Calendar", href: "/events" },
{ label: "Report an Issue", href: "/contact" },
{ label: "Member Directory", href: "#members" },
{ label: "Event Calendar", href: "#events" },
{ label: "Report an Issue", href: "#contact" },
],
},
{
title: "Resources",
items: [
{ label: "FAQ", href: "/contact" },
{ label: "Support", href: "/contact" },
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Support", href: "#contact" },
{ label: "Community Guidelines", href: "#" },
{ label: "Blog", href: "#" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Contact Us", href: "/contact" },
{ label: "Contact Us", href: "#contact" },
],
},
];
@@ -65,7 +63,7 @@ export default function HomePage() {
borderRadius="soft"
contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles"
background="grid"
background="circleGradient"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
@@ -89,7 +87,7 @@ export default function HomePage() {
<HeroLogoBillboardSplit
logoText="YTG CHEESURS"
description="Connect with thousands of fans, access exclusive streams, events, and community updates. Be part of something bigger."
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
buttons={[
{ text: "Join the Community", href: "/contact" },
{ text: "Learn More", href: "/about" },
@@ -108,9 +106,7 @@ export default function HomePage() {
<TextSplitAbout
title="About YTG Cheesurs"
description={[
"YTG Cheesurs is a thriving community of passionate gamers united by entertainment, belonging, and exclusive access to streamer content. We've built a space where thousands of fans connect, share moments, and grow together.",
"Our mission is to foster authentic connections within the gaming community while providing members with unparalleled access to behind-the-scenes content, exclusive events, and direct engagement with content creators we love.",
]}
"YTG Cheesurs is a thriving community of passionate gamers united by entertainment, belonging, and exclusive access to streamer content. We've built a space where thousands of fans connect, share moments, and grow together.", "Our mission is to foster authentic connections within the gaming community while providing members with unparalleled access to behind-the-scenes content, exclusive events, and direct engagement with content creators we love."]}
buttons={[{ text: "Explore Benefits", href: "/membership" }]}
buttonAnimation="slide-up"
showBorder={false}
@@ -124,40 +120,23 @@ export default function HomePage() {
description="Discover the core features that make our community special"
features={[
{
id: "1",
title: "Exclusive Stream Access",
author: "Premium Members",
description:
"Get early access to live streams, exclusive VODs, and behind-the-scenes content from your favorite creators. Never miss a moment of action.",
tags: ["Premium", "Streams"],
imageSrc: "http://img.b2bpic.net/free-photo/young-male-blogger-recording-station_1303-22004.jpg?_wi=1",
imageAlt: "Exclusive streaming content",
},
id: "1", title: "Exclusive Stream Access", author: "Premium Members", description:
"Get early access to live streams, exclusive VODs, and behind-the-scenes content from your favorite creators. Never miss a moment of action.", tags: ["Premium", "Streams"],
imageSrc: "http://img.b2bpic.net/free-photo/young-male-blogger-recording-station_1303-22004.jpg", imageAlt: "Exclusive streaming content"},
{
id: "2",
title: "Member Directory",
author: "Community Team",
description:
"Connect with fellow community members, find teammates, collaborate on content, and build lasting friendships with gamers who share your passion.",
tags: ["Community", "Networking"],
imageSrc: "http://img.b2bpic.net/free-photo/businessman-using-application-contact-with-his-colleagues_1134-644.jpg?_wi=1",
imageAlt: "Community member directory",
},
id: "2", title: "Member Directory", author: "Community Team", description:
"Connect with fellow community members, find teammates, collaborate on content, and build lasting friendships with gamers who share your passion.", tags: ["Community", "Networking"],
imageSrc: "http://img.b2bpic.net/free-photo/businessman-using-application-contact-with-his-colleagues_1134-644.jpg", imageAlt: "Community member directory"},
{
id: "3",
title: "Event Schedule & Alerts",
author: "Events Manager",
description:
"Stay updated with tournament schedules, community gatherings, watch parties, and exclusive events. Get real-time notifications so you never miss out.",
tags: ["Events", "Alerts"],
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-invoice_23-2149050193.jpg?_wi=1",
imageAlt: "Event schedule and calendar",
},
id: "3", title: "Event Schedule & Alerts", author: "Events Manager", description:
"Stay updated with tournament schedules, community gatherings, watch parties, and exclusive events. Get real-time notifications so you never miss out.", tags: ["Events", "Alerts"],
imageSrc: "http://img.b2bpic.net/free-vector/gradient-abstract-technology-invoice_23-2149050193.jpg", imageAlt: "Event schedule and calendar"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
tag="Community Features"
tagIcon={Sparkles}
/>
</div>
@@ -166,6 +145,7 @@ export default function HomePage() {
title="Trusted by Industry Partners"
description="YTG Cheesurs collaborates with leading brands in gaming and streaming"
tag="Partner Ecosystem"
tagIcon={Zap}
names={["Twitch", "YouTube Gaming", "Discord", "NVIDIA GeForce", "Corsair", "SteelSeries", "Razer"]}
textboxLayout="default"
useInvertedBackground={false}
@@ -179,47 +159,20 @@ export default function HomePage() {
title="What Our Community Says"
description="Hear directly from YTG Cheesurs members about their experience"
tag="Community Voices"
tagIcon={MessageCircle}
testimonials={[
{
id: "1",
title: "Found My Gaming Family",
quote:
"YTG Cheesurs gave me more than exclusive content—it gave me a second family. The community is welcoming, supportive, and genuinely passionate about gaming.",
name: "Alex Martinez",
role: "Supporter Member, 6 months",
imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg?_wi=1",
imageAlt: "Alex Martinez",
},
id: "1", title: "Found My Gaming Family", quote:
"YTG Cheesurs gave me more than exclusive content—it gave me a second family. The community is welcoming, supportive, and genuinely passionate about gaming.", name: "Alex Martinez", role: "Supporter Member, 6 months", imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg", imageAlt: "Alex Martinez"},
{
id: "2",
title: "Best Streaming Experience",
quote:
"The exclusive behind-the-scenes access is incredible. I feel like I'm part of the creator's journey, not just a viewer. This is what community should feel like.",
name: "Jordan Lee",
role: "VIP Member, 1 year",
imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg?_wi=2",
imageAlt: "Jordan Lee",
},
id: "2", title: "Best Streaming Experience", quote:
"The exclusive behind-the-scenes access is incredible. I feel like I'm part of the creator's journey, not just a viewer. This is what community should feel like.", name: "Jordan Lee", role: "VIP Member, 1 year", imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg", imageAlt: "Jordan Lee"},
{
id: "3",
title: "Met My Best Friends Here",
quote:
"I've made genuine friendships through YTG that extend far beyond gaming. The member directory helped me find teammates, and now we compete together regularly.",
name: "Taylor Chen",
role: "Community Member, 8 months",
imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg?_wi=3",
imageAlt: "Taylor Chen",
},
id: "3", title: "Met My Best Friends Here", quote:
"I've made genuine friendships through YTG that extend far beyond gaming. The member directory helped me find teammates, and now we compete together regularly.", name: "Taylor Chen", role: "Community Member, 8 months", imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg", imageAlt: "Taylor Chen"},
{
id: "4",
title: "Worth Every Penny",
quote:
"As a VIP member, the personal interaction and exclusive events make this membership essential. The value far exceeds the cost. Couldn't imagine the community without it.",
name: "Sam Rodriguez",
role: "VIP Member, 2 years",
imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg?_wi=4",
imageAlt: "Sam Rodriguez",
},
id: "4", title: "Worth Every Penny", quote:
"As a VIP member, the personal interaction and exclusive events make this membership essential. The value far exceeds the cost. Couldn't imagine the community without it.", name: "Sam Rodriguez", role: "VIP Member, 2 years", imageSrc: "http://img.b2bpic.net/free-photo/pro-gamer-broadcasting-gameplay-front-internet-audience_482257-77071.jpg", imageAlt: "Sam Rodriguez"},
]}
textboxLayout="default"
useInvertedBackground={false}
@@ -237,13 +190,11 @@ export default function HomePage() {
{ name: "favoriteGame", type: "text", placeholder: "Favorite Game(s)", required: false },
]}
textarea={{
name: "message",
placeholder: "Tell us about yourself and why you want to join YTG Cheesurs...",
rows: 5,
name: "message", placeholder: "Tell us about yourself and why you want to join YTG Cheesurs...", rows: 5,
required: false,
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/female-gamer-live-streaming-setup_23-2152006705.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/female-gamer-live-streaming-setup_23-2152006705.jpg"
imageAlt="Gaming setup and community"
mediaAnimation="opacity"
mediaPosition="right"