Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 12f2d2a84a | |||
| 2480523618 | |||
| 1eb71b58ea | |||
| 1cc0d26759 |
107
src/app/page.tsx
107
src/app/page.tsx
@@ -2,16 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { Award, Calendar, Star, ThumbsUp } from "lucide-react";
|
||||
import { Award, Calendar, Star, ThumbsUp, Mail } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -46,53 +46,25 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
title="Tanzania's Leading Marine Power"
|
||||
description="Authorized Yamaha Distributor - Genuine Parts, Expert Service for Lake Victoria."
|
||||
testimonials={[
|
||||
{
|
||||
name: "John M.", testimonial: "Great service and genuine parts!", rating: 5,
|
||||
handle: "@fisherman", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-standing-with-bicycle-near-coast_23-2148176566.jpg"},
|
||||
name: "John M.", handle: "@johnm", testimonial: "Great service and genuine parts!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-standing-with-bicycle-near-coast_23-2148176566.jpg"},
|
||||
{
|
||||
name: "Sarah K.", testimonial: "Very professional and reliable.", rating: 5,
|
||||
handle: "@businessowner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-executive-with-white-shirt-blue-suit_1139-135.jpg"},
|
||||
{
|
||||
name: "David L.", testimonial: "My fleet is running perfectly.", rating: 5,
|
||||
handle: "@fleetmanager", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-clipboard_23-2149214304.jpg"},
|
||||
{
|
||||
name: "Maria P.", testimonial: "Quick response and great quality.", rating: 5,
|
||||
handle: "@touroperator", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-outdoors_23-2149049107.jpg"},
|
||||
{
|
||||
name: "Paul O.", testimonial: "Best mechanics in the region!", rating: 5,
|
||||
handle: "@mechanic", imageSrc: "http://img.b2bpic.net/free-photo/man-port-preparing-yacht-trip_72229-518.jpg"},
|
||||
name: "Sarah K.", handle: "@sarahk", testimonial: "Very professional and reliable.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-executive-with-white-shirt-blue-suit_1139-135.jpg"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-representation-fast-water-vehicle_23-2151048086.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-fisherman-holding-fresh-fish-against-lake_23-2147894083.jpg", alt: "Portrait of a fisherman holding fresh fish"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/hipster-vacation-lake_23-2147978817.jpg", alt: "Hipster on vacation"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-teenager-with-baseball-teenager_23-2148262452.jpg", alt: "Medium shot teenager"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/man-with-fresh-caught-fish_23-2147894153.jpg", alt: "Man with fresh caught fish"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheerful-businessman-smiling_74855-1512.jpg", alt: "Cheerful businessman"},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text", text: "Yamaha Authorized"},
|
||||
{
|
||||
type: "text", text: "15+ Years Experience"},
|
||||
{
|
||||
type: "text", text: "Genuine Parts"},
|
||||
{
|
||||
type: "text", text: "Full Warranty"},
|
||||
{
|
||||
type: "text", text: "Lake Victoria Expert"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -110,12 +82,6 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "m2", value: "15+", title: "Years Serving", description: "Tanzania waters", icon: Calendar,
|
||||
},
|
||||
{
|
||||
id: "m3", value: "95%", title: "Satisfaction", description: "Customer feedback", icon: ThumbsUp,
|
||||
},
|
||||
{
|
||||
id: "m4", value: "30+", title: "Models", description: "Yamaha lineup", icon: Star,
|
||||
},
|
||||
]}
|
||||
title="Your Power, Our Expertise"
|
||||
description="Years of trusted service and premium marine solutions."
|
||||
@@ -131,8 +97,6 @@ export default function LandingPage() {
|
||||
title: "Expert Maintenance", description: "Certified technician support for all models.", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-just-married-scene-with-car-cans_23-2149539994.jpg"},
|
||||
{
|
||||
title: "Genuine Parts", description: "Authentic Yamaha components in stock.", imageSrc: "http://img.b2bpic.net/free-photo/private-yachts-port_72229-511.jpg"},
|
||||
{
|
||||
title: "Full Warranty", description: "Total peace of mind with every purchase.", imageSrc: "http://img.b2bpic.net/free-photo/wife-husband-going-up-stairs-sky_8353-9372.jpg"},
|
||||
]}
|
||||
title="Reliable Marine Solutions"
|
||||
description="Comprehensive support for your Yamaha marine equipment."
|
||||
@@ -155,15 +119,6 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "p3", brand: "Yamaha", name: "150HP High", price: "Contact for price", rating: 5,
|
||||
reviewCount: "18", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-black-mooring-rope-through-round-yacht-window_181624-19742.jpg"},
|
||||
{
|
||||
id: "p4", brand: "Yamaha", name: "250HP V6", price: "Contact for price", rating: 5,
|
||||
reviewCount: "32", imageSrc: "http://img.b2bpic.net/free-photo/spacecraft-natural-landscape_23-2151903076.jpg"},
|
||||
{
|
||||
id: "p5", brand: "Yamaha", name: "Jet Drive", price: "Contact for price", rating: 5,
|
||||
reviewCount: "15", imageSrc: "http://img.b2bpic.net/free-photo/aerial-shot-person-jet-skiing-bright-green-seawater_181624-30001.jpg"},
|
||||
{
|
||||
id: "p6", brand: "Yamaha", name: "Accessories", price: "Contact for price", rating: 5,
|
||||
reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-constructions-with-ropes-used-ship_181624-10678.jpg"},
|
||||
]}
|
||||
title="Yamaha Outboard Motors"
|
||||
description="Leading power solutions for your marine needs."
|
||||
@@ -175,14 +130,14 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Yamaha Marine", "Certified Dealer", "Genuine Parts", "Factory Service", "Full Warranty", "Victoria Region Partner", "Top Dealer Award"]}
|
||||
"Yamaha Marine", "Certified Dealer", "Genuine Parts"]}
|
||||
title="Authorized. Trusted. Reliable."
|
||||
description="Our certifications and trusted partnerships."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
<FaqSplitMedia
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
@@ -190,8 +145,6 @@ export default function LandingPage() {
|
||||
id: "f1", title: "Warranty coverage?", content: "Full manufacturer warranty on all units."},
|
||||
{
|
||||
id: "f2", title: "Service locations?", content: "Multiple service centers across Lake Victoria."},
|
||||
{
|
||||
id: "f3", title: "Parts availability?", content: "Largest stock of genuine parts in Tanzania."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to your common queries."
|
||||
@@ -200,51 +153,35 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
<ContactCTA
|
||||
tag="Contact"
|
||||
tagIcon={Mail}
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
tag="Get in touch"
|
||||
background={{ variant: "plain" }}
|
||||
title="Same-Day Quote Response"
|
||||
description="We respond to all quote requests within 24 hours."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bearded-mechanic-specialist-repairs-car-engine-which-is-raised-hydraulic-lift-garage-service-station_613910-4877.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[{text: "Get a Quote", href: "#"}]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
<FooterBase
|
||||
logoText="Nile Fishnet Motors"
|
||||
columns={[
|
||||
{
|
||||
title: "Nile Fishnet Motors", items: [
|
||||
{
|
||||
label: "About Us", href: "#"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Products", items: [
|
||||
{
|
||||
label: "Outboards", href: "#products"},
|
||||
{
|
||||
label: "Parts", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy", href: "#"},
|
||||
{
|
||||
label: "Terms", href: "#"},
|
||||
{ label: "Outboards", href: "#products" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Nile Fishnet Motors. All Rights Reserved."
|
||||
bottomRightText="Designed for Tanzania"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user