Merge version_2 into main #3
148
src/app/page.tsx
148
src/app/page.tsx
@@ -8,7 +8,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,81 +24,88 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="SHARP GRAPHIX"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="SHARP GRAPHIX"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
title="SHARP GRAPHIX CENTRE"
|
||||
description="Professional Graphic Design, Printing, Branding, Signage, Banners, Promotional Items, Labels, and Glass Portraits in Manzini, Eswatini."
|
||||
buttons={[{ text: "Get a Quote", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vibrant-fabric-prints-emerging-from-large-format-printers-design-studio-colorful-textiles-textile-printing-digital-printing_191095-99704.jpg?_wi=2"
|
||||
imageAlt="Sharp Graphix Centre creative workspace"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
testimonials={[
|
||||
{
|
||||
name: "Client A", handle: "@clientA", testimonial: "Amazing quality and service!", rating: 5
|
||||
}
|
||||
]}
|
||||
title="SHARP GRAPHIX CENTRE"
|
||||
description="Professional Graphic Design, Printing, Branding, Signage, Banners, Promotional Items, Labels, and Glass Portraits in Manzini, Eswatini."
|
||||
buttons={[{ text: "Get a Quote", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vibrant-fabric-prints-emerging-from-large-format-printers-design-studio-colorful-textiles-textile-printing-digital-printing_191095-99704.jpg?_wi=2"
|
||||
imageAlt="Sharp Graphix Centre creative workspace"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Graphic Design", description: "Creative visual identities and modern designs.", imageSrc: "http://img.b2bpic.net/free-photo/industrial-designer-digital-art_23-2151585302.jpg?_wi=2" },
|
||||
{ title: "Printing & Signage", description: "High-quality large format printing and custom signage.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-81.jpg?_wi=2" },
|
||||
{ title: "Branding & Promotional Items", description: "Comprehensive branding and custom items to boost your presence.", imageSrc: "http://img.b2bpic.net/free-photo/boxes-labeled-dishwasher-tablets-home-supplies-store_169016-49234.jpg?_wi=2" },
|
||||
{ title: "Labels & Glass Portraits", description: "Precision custom labels and luxury glass portraits.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-posing_23-2149239019.jpg?_wi=2" }
|
||||
]}
|
||||
title="Our Services"
|
||||
description="We offer a wide range of creative and branding services in Manzini."
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Graphic Design", description: "Creative visual identities and modern designs.", imageSrc: "http://img.b2bpic.net/free-photo/industrial-designer-digital-art_23-2151585302.jpg?_wi=2" },
|
||||
{ title: "Printing & Signage", description: "High-quality large format printing and custom signage.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-81.jpg?_wi=2" },
|
||||
{ title: "Branding & Promotional Items", description: "Comprehensive branding and custom items to boost your presence.", imageSrc: "http://img.b2bpic.net/free-photo/boxes-labeled-dishwasher-tablets-home-supplies-store_169016-49234.jpg?_wi=2" },
|
||||
{ title: "Labels & Glass Portraits", description: "Precision custom labels and luxury glass portraits.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-posing_23-2149239019.jpg?_wi=2" }
|
||||
]}
|
||||
title="Our Services"
|
||||
description="We offer a wide range of creative and branding services in Manzini."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Custom Banners", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/blackfriday-celebration-marketing_23-2151861867.jpg?_wi=2" },
|
||||
{ id: "p2", name: "Promotional Items", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/top-view-male-self-care-items_23-2150347104.jpg?_wi=1" },
|
||||
{ id: "p3", name: "Glass Portraits", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-posing_23-2149239019.jpg?_wi=1" }
|
||||
]}
|
||||
title="Featured Offerings"
|
||||
description="High-quality custom products for your business needs."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Custom Banners", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/blackfriday-celebration-marketing_23-2151861867.jpg?_wi=2" },
|
||||
{ id: "p2", name: "Promotional Items", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/top-view-male-self-care-items_23-2150347104.jpg?_wi=1" },
|
||||
{ id: "p3", name: "Glass Portraits", price: "Contact Us", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-posing_23-2149239019.jpg?_wi=1" }
|
||||
]}
|
||||
title="Featured Offerings"
|
||||
description="High-quality custom products for your business needs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Contact Us"
|
||||
title="Visit Sharp Graphix Centre in Manzini"
|
||||
description="Located in Manzini, Eswatini. Call us at +268 7999 7415 for all your graphic design and branding needs."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/black-friday-banners-clothes-rack-clothing-store-close-up-promotional-signs-marketing-retail-business-campaign-event-merchandise-with-price-tags-department-shop_482257-65363.jpg"
|
||||
mediaPosition="right"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Contact Us"
|
||||
title="Visit Sharp Graphix Centre in Manzini"
|
||||
description="Located in Manzini, Eswatini. Call us at +268 7999 7415 for all your graphic design and branding needs."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/black-friday-banners-clothes-rack-clothing-store-close-up-promotional-signs-marketing-retail-business-campaign-event-merchandise-with-price-tags-department-shop_482257-65363.jpg"
|
||||
mediaPosition="right"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Services", href: "#services" }, { label: "Products", href: "#products" }, { label: "Contact", href: "#contact" }] },
|
||||
{ items: [{ label: "Manzini, Eswatini" }, { label: "+268 7999 7415" }] }
|
||||
]}
|
||||
logoText="SHARP GRAPHIX CENTRE"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Services", href: "#services" }, { label: "Products", href: "#products" }, { label: "Contact", href: "#contact" }] },
|
||||
{ items: [{ label: "Manzini, Eswatini" }, { label: "+268 7999 7415" }] }
|
||||
]}
|
||||
logoText="SHARP GRAPHIX CENTRE"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user