253 lines
8.4 KiB
TypeScript
253 lines
8.4 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="medium"
|
|
background="blurBottom"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
navItems={[
|
|
{
|
|
name: "Home",
|
|
id: "hero",
|
|
},
|
|
{
|
|
name: "About",
|
|
id: "about",
|
|
},
|
|
{
|
|
name: "Features",
|
|
id: "features",
|
|
},
|
|
{
|
|
name: "Contact",
|
|
id: "contact",
|
|
},
|
|
]}
|
|
brandName="TheSamyZone"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboard
|
|
background={{
|
|
variant: "sparkles-gradient",
|
|
}}
|
|
logoText="TheSamyZone"
|
|
description="Unlock your creative potential with deep dives into modern design, digital art, and storytelling. Join our community of creators today."
|
|
buttons={[
|
|
{
|
|
text: "Subscribe Now",
|
|
href: "https://youtube.com/@TheSamyZone",
|
|
},
|
|
{
|
|
text: "Visit Website",
|
|
href: "#about",
|
|
},
|
|
]}
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/a-high-tech-digital-art-studio-workspace-1774895051362-c1748b67.png?_wi=1"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<MetricSplitMediaAbout
|
|
useInvertedBackground={true}
|
|
title="Welcome to the Creative Hub"
|
|
description="At TheSamyZone, we believe creativity is your superpower. We produce weekly content that bridges the gap between technical web design and artistic storytelling."
|
|
metrics={[
|
|
{
|
|
value: "100+",
|
|
title: "Design Tutorials",
|
|
},
|
|
{
|
|
value: "50K+",
|
|
title: "Creative Community",
|
|
},
|
|
{
|
|
value: "1M+",
|
|
title: "Total Views",
|
|
},
|
|
]}
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/close-up-photo-of-creative-tools-like-a--1774895050237-0a7cdbe1.png?_wi=1"
|
|
mediaAnimation="blur-reveal"
|
|
metricsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwentySix
|
|
textboxLayout="split"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
title: "Weekly Deep Dives",
|
|
description: "Mastering the latest trends in digital art and web design with detailed walkthroughs.",
|
|
buttonIcon: "Zap",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/a-high-tech-digital-art-studio-workspace-1774895051362-c1748b67.png?_wi=2",
|
|
imageAlt: "A high-tech digital art studio workspace with purple gradients, tactile textures, and sleek UI desig",
|
|
},
|
|
{
|
|
title: "Project Showcases",
|
|
description: "Behind-the-scenes looks at how real-world creative projects are built from scratch.",
|
|
buttonIcon: "Sparkles",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/close-up-photo-of-creative-tools-like-a--1774895050237-0a7cdbe1.png?_wi=2",
|
|
imageAlt: "Close up photo of creative tools like a stylus on a digital tablet with lavender and gold ambient li",
|
|
},
|
|
{
|
|
title: "Creative Tutorials",
|
|
description: "Hands-on guides to help you achieve your design goals faster.",
|
|
buttonIcon: "Award",
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/iconic-digital-design-representation-sho-1774895051830-7bb3087b.png",
|
|
imageAlt: "Iconic digital design representation showing futuristic web layouts in a tactile, high-quality mater",
|
|
},
|
|
]}
|
|
title="What You'll Find Here"
|
|
description="Curated content designed to elevate your craft through consistent, actionable insights."
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
useInvertedBackground={true}
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "Sarah J.",
|
|
role: "UI Designer",
|
|
company: "TechCorp",
|
|
rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/headshot-of-a-modern-creative-profession-1774895049642-9bd47284.png?_wi=1",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Mark D.",
|
|
role: "Digital Artist",
|
|
company: "CreativeLab",
|
|
rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/headshot-of-a-designer-warm-background-p-1774895049448-4a6b398b.png",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Elena R.",
|
|
role: "Founder",
|
|
company: "GrowthCo",
|
|
rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/headshot-of-a-tech-entrepreneur-sleek-ba-1774895049706-7b283a06.png",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "Ken P.",
|
|
role: "Web Dev",
|
|
company: "StartupX",
|
|
rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/headshot-of-a-student-designer-natural-l-1774895049989-34350167.png",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "Alex B.",
|
|
role: "UX Consultant",
|
|
company: "DesignSync",
|
|
rating: 5,
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BfzZoj7eSi3bOUgRhFrgM5XyrP/headshot-of-a-modern-creative-profession-1774895049642-9bd47284.png?_wi=2",
|
|
},
|
|
]}
|
|
kpiItems={[
|
|
{
|
|
value: "4.9/5",
|
|
label: "Avg Rating",
|
|
},
|
|
{
|
|
value: "20K+",
|
|
label: "Community Members",
|
|
},
|
|
{
|
|
value: "Daily",
|
|
label: "Engagement",
|
|
},
|
|
]}
|
|
title="Community Love"
|
|
description="See why thousands of creators trust TheSamyZone for their growth."
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
useInvertedBackground={false}
|
|
background={{
|
|
variant: "plain",
|
|
}}
|
|
tag="Get in touch"
|
|
title="Ready to Start Creating?"
|
|
description="Have business inquiries or collaboration ideas? Send us an email and let's create something legendary together."
|
|
buttons={[
|
|
{
|
|
text: "Contact Us",
|
|
href: "mailto:hello@thesamyzone.com",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{
|
|
title: "Channel",
|
|
items: [
|
|
{
|
|
label: "Subscribe",
|
|
href: "https://youtube.com/@TheSamyZone",
|
|
},
|
|
{
|
|
label: "About Us",
|
|
href: "#about",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Social",
|
|
items: [
|
|
{
|
|
label: "Instagram",
|
|
href: "#",
|
|
},
|
|
{
|
|
label: "Twitter",
|
|
href: "#",
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
bottomLeftText="© 2026 TheSamyZone. All rights reserved."
|
|
bottomRightText="Stay Creative"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|