Merge version_1 into main #2
414
src/app/page.tsx
414
src/app/page.tsx
@@ -18,297 +18,149 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Lincoln Branding Wear"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="Lincoln Branding Wear"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Style Your Brand"
|
||||
description="Premium branded clothes for businesses, schools, teams, events and fashion lovers."
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-works-luxurious-clothing-store_482257-76679.jpg?_wi=1",
|
||||
imageAlt: "professional branded apparel clothing",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448729.jpg?_wi=1",
|
||||
imageAlt: "custom printed cotton t-shirt",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-suffering-from-bullying_23-2149155405.jpg",
|
||||
imageAlt: "stylish custom logo hoodie",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardGallery
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Style Your Brand"
|
||||
description="Premium branded clothes for businesses, schools, teams, events and fashion lovers."
|
||||
buttons={[{ text: "Shop Now", href: "#products" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-works-luxurious-clothing-store_482257-76679.jpg", imageAlt: "professional branded apparel clothing" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448729.jpg", imageAlt: "custom printed cotton t-shirt" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/person-suffering-from-bullying_23-2149155405.jpg", imageAlt: "stylish custom logo hoodie" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Branded T-Shirts",
|
||||
price: "$25",
|
||||
variant: "Apparel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-t-shirt-painting-still-life_23-2150572730.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Custom Hoodies",
|
||||
price: "$40",
|
||||
variant: "Apparel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-fit-man-blank-grey-black-hoodie-sweater-posing-front-white-wall-looking-down_346278-1057.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Branded Caps",
|
||||
price: "$18",
|
||||
variant: "Accessory",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-composition-with-neatly-arranged-organized-sport-items_23-2150275227.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Team Jackets",
|
||||
price: "$65",
|
||||
variant: "Apparel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-with-skateboard_23-2148478707.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Corporate Polos",
|
||||
price: "$30",
|
||||
variant: "Apparel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/line-green-thread-reels_23-2148212663.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Custom Beanies",
|
||||
price: "$15",
|
||||
variant: "Accessory",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-funny-beautiful-fair-haired-woman-knited-hat-sweater-smiling-blue_176420-7671.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Products"
|
||||
description="Explore our high-quality custom apparel and merchandise range."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Branded T-Shirts", price: "$25", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/top-view-t-shirt-painting-still-life_23-2150572730.jpg" },
|
||||
{ id: "2", name: "Custom Hoodies", price: "$40", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/young-fit-man-blank-grey-black-hoodie-sweater-posing-front-white-wall-looking-down_346278-1057.jpg" },
|
||||
{ id: "3", name: "Branded Caps", price: "$18", variant: "Accessory", imageSrc: "http://img.b2bpic.net/free-photo/view-composition-with-neatly-arranged-organized-sport-items_23-2150275227.jpg" },
|
||||
{ id: "4", name: "Team Jackets", price: "$65", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-with-skateboard_23-2148478707.jpg" },
|
||||
{ id: "5", name: "Corporate Polos", price: "$30", variant: "Apparel", imageSrc: "http://img.b2bpic.net/free-photo/line-green-thread-reels_23-2148212663.jpg" },
|
||||
{ id: "6", name: "Custom Beanies", price: "$15", variant: "Accessory", imageSrc: "http://img.b2bpic.net/free-photo/young-funny-beautiful-fair-haired-woman-knited-hat-sweater-smiling-blue_176420-7671.jpg" }
|
||||
]}
|
||||
title="Our Products"
|
||||
description="Explore our high-quality custom apparel and merchandise range."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "About Lincoln Branding Wear",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-woman-sewing-face-mask_23-2148614651.jpg",
|
||||
alt: "printing press studio workshop",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{ type: "text", content: "About Lincoln Branding Wear" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/high-angle-woman-sewing-face-mask_23-2148614651.jpg", alt: "printing press studio workshop" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardNineteen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
tag: "Quality",
|
||||
title: "Premium Materials",
|
||||
subtitle: "Top-tier fabrics",
|
||||
description: "We only use the best textiles for our custom products.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-with-trucker-hats_23-2149412769.jpg",
|
||||
imageAlt: "modern adjustable branded cap",
|
||||
},
|
||||
{
|
||||
tag: "Speed",
|
||||
title: "Fast Turnaround",
|
||||
subtitle: "Quick delivery",
|
||||
description: "Your brand deserves to be seen without delay.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-works-luxurious-clothing-store_482257-76679.jpg?_wi=2",
|
||||
imageAlt: "modern adjustable branded cap",
|
||||
},
|
||||
{
|
||||
tag: "Support",
|
||||
title: "Expert Design",
|
||||
subtitle: "Pro support",
|
||||
description: "Our design team helps bring your ideas to life.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448729.jpg?_wi=2",
|
||||
imageAlt: "modern adjustable branded cap",
|
||||
},
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
description="We deliver excellence through quality branding."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardNineteen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ tag: "Quality", title: "Premium Materials", subtitle: "Top-tier fabrics", description: "We only use the best textiles for our custom products.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-people-with-trucker-hats_23-2149412769.jpg", imageAlt: "modern adjustable branded cap" },
|
||||
{ tag: "Speed", title: "Fast Turnaround", subtitle: "Quick delivery", description: "Your brand deserves to be seen without delay.", imageSrc: "http://img.b2bpic.net/free-photo/man-works-luxurious-clothing-store_482257-76679.jpg", imageAlt: "modern adjustable branded cap" },
|
||||
{ tag: "Support", title: "Expert Design", subtitle: "Pro support", description: "Our design team helps bring your ideas to life.", imageSrc: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448729.jpg", imageAlt: "modern adjustable branded cap" }
|
||||
]}
|
||||
title="Why Choose Us"
|
||||
description="We deliver excellence through quality branding."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarahj",
|
||||
testimonial: "Excellent service and quality!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael C.",
|
||||
handle: "@michealc",
|
||||
testimonial: "Fast turnaround for our event.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1624.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@emilyr",
|
||||
testimonial: "Professional design and finish.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-repair-sale-shop_23-2150746345.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@davidk",
|
||||
testimonial: "Best hoodies in town.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Alex B.",
|
||||
handle: "@alexb",
|
||||
testimonial: "Uniforms looked perfect.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/headshot-fashionable-young-man-with-laptop-computer-using-high-speed-internet-connection-lunch-cozy-cafe-interior_273609-1945.jpg",
|
||||
},
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Clients Say"
|
||||
description="Trusted by businesses and teams."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarahj", testimonial: "Excellent service and quality!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg" },
|
||||
{ id: "2", name: "Michael C.", handle: "@michealc", testimonial: "Fast turnaround for our event.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1624.jpg" },
|
||||
{ id: "3", name: "Emily R.", handle: "@emilyr", testimonial: "Professional design and finish.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-women-repair-sale-shop_23-2150746345.jpg" },
|
||||
{ id: "4", name: "David K.", handle: "@davidk", testimonial: "Best hoodies in town.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg" },
|
||||
{ id: "5", name: "Alex B.", handle: "@alexb", testimonial: "Uniforms looked perfect.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/headshot-fashionable-young-man-with-laptop-computer-using-high-speed-internet-connection-lunch-cozy-cafe-interior_273609-1945.jpg" }
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Clients Say"
|
||||
description="Trusted by businesses and teams."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is the order process?",
|
||||
content: "Simply choose your product and send your design.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "How long for delivery?",
|
||||
content: "Most orders are delivered within 5-7 days.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer bulk discounts?",
|
||||
content: "Yes, we offer competitive rates for bulk branding.",
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to your common queries."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqBase
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "What is the order process?", content: "Simply choose your product and send your design." },
|
||||
{ id: "2", title: "How long for delivery?", content: "Most orders are delivered within 5-7 days." },
|
||||
{ id: "3", title: "Do you offer bulk discounts?", content: "Yes, we offer competitive rates for bulk branding." }
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to your common queries."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Get in Touch"
|
||||
title="Contact Us"
|
||||
description="Get in touch for your custom order."
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-woman-sewing-face-mask_23-2148614651.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Contact Us"
|
||||
description="Get in touch for your custom order."
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-woman-sewing-face-mask_23-2148614651.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Products",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "Branding",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Lincoln Branding Wear"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Products", href: "#products" },
|
||||
{ label: "Branding", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Lincoln Branding Wear"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user