Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e02b90374c | |||
| 89ca646e8b | |||
| a17a186d50 | |||
| 71748c8dbb | |||
| bc3e6ca7c3 | |||
| e3d42f0cd7 | |||
| e371cec629 | |||
| 55a6c8ff89 | |||
| 78ee275131 | |||
| 9f095742be |
134
src/app/page.tsx
134
src/app/page.tsx
@@ -5,14 +5,15 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import { Award, Cog, Flashlight, Headphones, Layers, MessageCircle, Package, Sparkles } from "lucide-react";
|
import { Award, Cog, Flashlight, Headphones, Layers, MessageCircle, Package, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
@@ -34,19 +35,29 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", id: "#home"},
|
name: "Home", id: "/"},
|
||||||
{
|
{
|
||||||
name: "About", id: "#about"},
|
name: "About Us", id: "/about-us"},
|
||||||
{
|
{
|
||||||
name: "Products", id: "#products"},
|
name: "Why Choose Us", id: "/#why-choose-us"},
|
||||||
{
|
{
|
||||||
name: "Services", id: "#services"},
|
name: "Services", id: "/#services"},
|
||||||
{
|
{
|
||||||
name: "Testimonials", id: "#testimonials"},
|
name: "Products", id: "/#products"},
|
||||||
{
|
{
|
||||||
name: "FAQ", id: "#faq"},
|
name: "Pricing", id: "/#pricing"},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "#contact"},
|
name: "Client Stories", id: "/#testimonials"},
|
||||||
|
{
|
||||||
|
name: "Customer Reviews", id: "/#customer-reviews"},
|
||||||
|
{
|
||||||
|
name: "Our Partners", id: "/#social-proof"},
|
||||||
|
{
|
||||||
|
name: "Brands We Carry", id: "/#our-new-partners"},
|
||||||
|
{
|
||||||
|
name: "FAQ", id: "/#faq"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "/#contact"},
|
||||||
]}
|
]}
|
||||||
brandName="Sanimart Sdn Bhd"
|
brandName="Sanimart Sdn Bhd"
|
||||||
/>
|
/>
|
||||||
@@ -60,11 +71,11 @@ export default function LandingPage() {
|
|||||||
description="Sanimart Sdn Bhd is your trusted partner for premium bathroom supplies and expert installation services in Ipoh, Perak. Elevate your space with quality and style."
|
description="Sanimart Sdn Bhd is your trusted partner for premium bathroom supplies and expert installation services in Ipoh, Perak. Elevate your space with quality and style."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Explore Products", href: "#products"},
|
text: "Explore Products", href: "/#products"},
|
||||||
{
|
{
|
||||||
text: "Get a Quote", href: "#contact"},
|
text: "Get a Quote", href: "/#contact"},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/view-small-bathroom-interior-with-modern-style-furniture-decor_23-2150864598.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/view-small-bathroom-interior-with-modern-style-furniture-decor_23-2150864598.jpg?_wi=1"
|
||||||
imageAlt="Luxurious modern bathroom interior"
|
imageAlt="Luxurious modern bathroom interior"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
@@ -95,16 +106,44 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<TextAbout
|
<div id="why-choose-us" data-section="why-choose-us">
|
||||||
useInvertedBackground={false}
|
<FeatureCardTwentyThree
|
||||||
tag="About Sanimart"
|
animationType="slide-up"
|
||||||
title="Trusted for Quality Bathroom Solutions Since 2005"
|
textboxLayout="default"
|
||||||
buttons={[
|
useInvertedBackground={true}
|
||||||
|
title="Why Choose Sanimart: Your Trusted Partner for Bathroom Solutions"
|
||||||
|
description="Discover the distinct advantages of partnering with Sanimart Sdn Bhd for your next bathroom project."
|
||||||
|
tag="Our Commitment"
|
||||||
|
features={[
|
||||||
{
|
{
|
||||||
text: "Our Story", href: "#about"},
|
id: "showroom", title: "Local Showroom Experience", tags: ["Visit Us", "Ipoh, Perak"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/view-small-bathroom-interior-with-modern-style-furniture-decor_23-2150864598.jpg?_wi=2"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: "See Our Work", href: "#products"},
|
id: "advice", title: "Expert Practical Advice", tags: ["Personalized", "Consultation"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-african-american-architect-glasses-standing-new-flat-with-drawing_186202-3769.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "budget", title: "Solutions for Every Budget", tags: ["Affordable", "Premium"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/modern-bathroom-interior-elements_176420-1378.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "suitability", title: "Perfect for All Projects", tags: ["Homeowners", "Contractors"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/young-man-construction-site_1098-15431.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "explanation", title: "Clear & Transparent Information", tags: ["No Hidden Fees", "Detailed Guidance"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-businesswoman-giving-presentation-her-colleagues-meeting_1098-17558.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "supply-install", title: "Complete Supply & Installation", tags: ["Hassle-Free", "Professional"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/workers-installing-new-toilet-bathroom_23-2148766157.jpg"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "after-sales", title: "Dedicated After-Sales Support", tags: ["Warranty", "Customer Care"],
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-headset-talking-customer-support-service_23-2148972827.jpg"
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -175,7 +214,7 @@ export default function LandingPage() {
|
|||||||
"Single WC / Basin Installation", "Standard Fixture Setup", "1-Month Workmanship Warranty"],
|
"Single WC / Basin Installation", "Standard Fixture Setup", "1-Month Workmanship Warranty"],
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Select Basic", href: "#contact"},
|
text: "Select Basic", href: "/#contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -184,7 +223,7 @@ export default function LandingPage() {
|
|||||||
"WC + Basin + Shower System Installation", "Complex Fixture Setup", "3-Month Workmanship Warranty", "Post-Installation Check-up"],
|
"WC + Basin + Shower System Installation", "Complex Fixture Setup", "3-Month Workmanship Warranty", "Post-Installation Check-up"],
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Select Premium", href: "#contact"},
|
text: "Select Premium", href: "/#contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -193,7 +232,7 @@ export default function LandingPage() {
|
|||||||
"Full Bathroom Renovation", "Integrated Design Solutions", "Extended Warranty Options", "Personalized Consultation"],
|
"Full Bathroom Renovation", "Integrated Design Solutions", "Extended Warranty Options", "Personalized Consultation"],
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
text: "Request Quote", href: "#contact"},
|
text: "Request Quote", href: "/#contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -226,6 +265,24 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="customer-reviews" data-section="customer-reviews">
|
||||||
|
<TestimonialCardOne
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
title="What Our Customers Value"
|
||||||
|
description="Discover how Sanimart's friendly and professional service has delighted homeowners and contractors alike."
|
||||||
|
tag="Our Impact"
|
||||||
|
testimonials={[
|
||||||
|
{
|
||||||
|
id: "cust-review-1", name: "Puan Aminah", role: "Satisfied Homeowner", company: "Ipoh, Perak", rating: 5,
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-young-woman-with-dark-skin-looks-from-under-her-hand-points-to-upper-right-corner-where-copy-space-is-isolated-blue-wall_273609-5487.jpg"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -238,6 +295,19 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="our-new-partners" data-section="our-new-partners">
|
||||||
|
<SocialProofOne
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Our Esteemed Product Partners"
|
||||||
|
description="We proudly partner with leading manufacturers to offer you a wide selection of high-quality bathroom products."
|
||||||
|
tag="Brands We Carry"
|
||||||
|
names={[
|
||||||
|
"Brand A", "Brand B", "Brand C", "Brand D", "Brand E", "Brand F", "Brand G", "Brand H"]
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqDouble
|
<FaqDouble
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -271,31 +341,30 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
text: "Call Us Now", href: "tel:0125061800"},
|
text: "Call Us Now", href: "tel:0125061800"},
|
||||||
{
|
{
|
||||||
text: "Get a Free Quote", href: "#"},
|
text: "Get a Free Quote", href: "/#contact"},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterSimple
|
||||||
logoText="Sanimart Sdn Bhd"
|
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{
|
{
|
||||||
label: "About Us", href: "#about"},
|
label: "About Us", href: "/about-us"},
|
||||||
{
|
{
|
||||||
label: "Our Services", href: "#services"},
|
label: "Our Services", href: "/#services"},
|
||||||
{
|
{
|
||||||
label: "Our Products", href: "#products"},
|
label: "Our Products", href: "/#products"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Support", items: [
|
title: "Support", items: [
|
||||||
{
|
{
|
||||||
label: "FAQ", href: "#faq"},
|
label: "FAQ", href: "/#faq"},
|
||||||
{
|
{
|
||||||
label: "Contact", href: "#contact"},
|
label: "Contact", href: "/#contact"},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -307,7 +376,8 @@ export default function LandingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2024 Sanimart Sdn Bhd. All rights reserved."
|
bottomLeftText="Sanimart Sdn Bhd"
|
||||||
|
bottomRightText="© 2024 Sanimart Sdn Bhd. All rights reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user