Files
b7b02ad3-18c3-4387-ada7-d51…/src/app/page.tsx
2026-04-09 02:24:02 +00:00

128 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { PenTool, Mail, Instagram, Linkedin, Twitter } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Works", id: "works" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
brandName="Graphic Design Studio"
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
title="Visual Design for Modern Brands"
description="Expert graphic design services specialized in visual identity, typography, and layout. I transform concepts into compelling visual stories."
kpis={[
{ value: "50+", label: "Projects Completed" },
{ value: "10+", label: "Years Experience" },
{ value: "100%", label: "Client Satisfaction" }
]}
buttons={[{ text: "Explore Work", href: "#works" }, { text: "Contact Me", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/graphic-designer-working-design-studio_23-2148921869.jpg"
imageAlt="Graphic designer workspace"
/>
</div>
<div id="about" data-section="about">
<MetricSplitMediaAbout
title="Crafting Visual Excellence"
description="With a keen eye for aesthetics and a background in typography, I specialize in creating distinct brand identities and editorial designs that resonate with audiences."
metrics={[
{ value: "Branding", title: "Identity Design" },
{ value: "Print", title: "Editorial & Packaging" },
{ value: "Digital", title: "UI & Motion Design" }
]}
imageSrc="http://img.b2bpic.net/free-photo/female-graphic-designer-working-office_23-2149749876.jpg"
/>
</div>
<div id="works" data-section="works">
<ProductCardFour
animationType="slide-up"
textboxLayout="split"
gridVariant="asymmetric-60-wide-40-narrow"
useInvertedBackground={true}
products={[
{ id: "w1", name: "Typography Portfolio", price: "2024", variant: "Branding", imageSrc: "http://img.b2bpic.net/free-photo/minimal-design-layout-inspiration_53876-124304.jpg" },
{ id: "w2", name: "Minimalist Packaging", price: "2023", variant: "Print", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendered-abstract-design-elements_23-2148996799.jpg" },
{ id: "w3", name: "Brand Motion Identity", price: "2024", variant: "Motion", imageSrc: "http://img.b2bpic.net/free-photo/videographer-motion-graphics_482257-126484.jpg" },
{ id: "w4", name: "Social Media System", price: "2023", variant: "Digital", imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-photos-ceramic-kitchenware_23-2149060844.jpg" },
]}
title="Selected Projects"
description="From brand identities to digital layouts, here are a few highlights of my professional design journey."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="blur-reveal"
textboxLayout="split"
title="Collaborator Reviews"
description="What clients say about working together on design projects."
testimonials={[
{ id: "t1", name: "Anna Smith", handle: "@design_lead", testimonial: "The attention to detail in the layout and typography was exceptional. A true design professional.", icon: PenTool },
{ id: "t2", name: "David Jones", handle: "@brand_owner", testimonial: "They understood my brand vision immediately and translated it into a beautiful visual language.", icon: PenTool },
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Let's Collaborate"
description="Have a design challenge or a new project idea? Send me a message and let's discuss how we can create something impactful."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name" },
{ name: "email", type: "email", placeholder: "Your Email" }
]}
textarea={{ name: "message", placeholder: "Tell me about your project..." }}
buttonText="Send Message"
imageSrc="http://img.b2bpic.net/free-photo/person-holding-color-samples_23-2148425265.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Graphic Design Studio"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}