Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d916bb9273 | |||
| 425a2089ea | |||
| addc837a34 |
155
src/app/page.tsx
155
src/app/page.tsx
@@ -30,25 +30,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
},
|
||||
name: "Home", id: "home"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
name: "About Us", id: "about"},
|
||||
{
|
||||
name: "Products",
|
||||
id: "products",
|
||||
},
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Munna Enterprises"
|
||||
/>
|
||||
@@ -57,30 +47,21 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="Munna Enterprises: Your Trusted Electrical Partner"
|
||||
description="Providing quality electrical items, home appliances, and expert service at affordable prices in your local area."
|
||||
kpis={[
|
||||
{
|
||||
value: "1000+",
|
||||
label: "Happy Clients",
|
||||
},
|
||||
value: "1000+", label: "Happy Clients"},
|
||||
{
|
||||
value: "500+",
|
||||
label: "Products Available",
|
||||
},
|
||||
value: "500+", label: "Products Available"},
|
||||
{
|
||||
value: "10+ Yrs",
|
||||
label: "Experience",
|
||||
},
|
||||
value: "10+ Yrs", label: "Experience"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us Now",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Contact Us Now", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24226.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -90,23 +71,17 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="About Munna Enterprises"
|
||||
title="About Munna Kushwaha"
|
||||
metrics={[
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
label: "Quality Products",
|
||||
value: "100%",
|
||||
},
|
||||
label: "Expertise & Experience", value: "4 Years"},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Customer Trust",
|
||||
value: "Local",
|
||||
},
|
||||
label: "Trusted Business", value: "100%"},
|
||||
{
|
||||
icon: Zap,
|
||||
label: "Fast Support",
|
||||
value: "Daily",
|
||||
},
|
||||
label: "Service Support", value: "Ongoing"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -120,26 +95,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "LED Lighting Solutions",
|
||||
price: "From $5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-couple-decorating-home_23-2150633317.jpg?_wi=1",
|
||||
},
|
||||
id: "p1", name: "Electrical Wires", price: "Inquire for rates", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-52227.jpg?_wi=1"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Electric Wires & Cables",
|
||||
price: "From $10",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-52227.jpg?_wi=1",
|
||||
},
|
||||
id: "p2", name: "Premium Switches", price: "Inquire for rates", imageSrc: "http://img.b2bpic.net/free-photo/side-view-couple-decorating-home_23-2150633317.jpg?_wi=1"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Premium Ceiling Fans",
|
||||
price: "From $50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=1",
|
||||
},
|
||||
id: "p3", name: "LED Lighting Solutions", price: "Inquire for rates", imageSrc: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24226.jpg?_wi=1"},
|
||||
{
|
||||
id: "p4", name: "Ceiling & Table Fans", price: "Inquire for rates", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=1"},
|
||||
{
|
||||
id: "p5", name: "Home Appliances", price: "Inquire for rates", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-light-switch-home_1398-1288.jpg?_wi=1"}
|
||||
]}
|
||||
title="Our Featured Products"
|
||||
description="We offer a wide range of electrical wires, LED lights, fans, and home appliances for all your needs."
|
||||
title="Our Electrical Products"
|
||||
description="We offer a wide range of electrical wires, switches, LED lights, fans, and home appliances with expert installation support."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -149,37 +116,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Great Service",
|
||||
quote: "Munna Enterprises helped me wire my entire home. Excellent quality!",
|
||||
name: "Ramesh Kumar",
|
||||
role: "Homeowner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-light-switch-home_1398-1288.jpg",
|
||||
},
|
||||
id: "1", title: "Great Service", quote: "Munna Enterprises helped me wire my entire home. Excellent quality!", name: "Ramesh Kumar", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-light-switch-home_1398-1288.jpg?_wi=2"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Very Helpful",
|
||||
quote: "Found all the electrical parts I needed for my office upgrade. Great shop.",
|
||||
name: "Anjali Sharma",
|
||||
role: "Business Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-52227.jpg?_wi=2",
|
||||
},
|
||||
id: "2", title: "Very Helpful", quote: "Found all the electrical parts I needed for my office upgrade. Great shop.", name: "Anjali Sharma", role: "Business Owner", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-working-switchboard-with-fuses_169016-52227.jpg?_wi=2"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Quality Fans",
|
||||
quote: "Bought a high-quality fan here. Works perfectly and the price was fair.",
|
||||
name: "Vikram Singh",
|
||||
role: "Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=2",
|
||||
},
|
||||
id: "3", title: "Quality Fans", quote: "Bought a high-quality fan here. Works perfectly and the price was fair.", name: "Vikram Singh", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=2"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Expert Advice",
|
||||
quote: "They really know their stuff. Saved me a lot of time on my repair job.",
|
||||
name: "Priya Das",
|
||||
role: "Electrician",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-couple-decorating-home_23-2150633317.jpg?_wi=2",
|
||||
},
|
||||
id: "4", title: "Expert Advice", quote: "They really know their stuff. Saved me a lot of time on my repair job.", name: "Priya Das", role: "Electrician", imageSrc: "http://img.b2bpic.net/free-photo/side-view-couple-decorating-home_23-2150633317.jpg?_wi=2"},
|
||||
]}
|
||||
title="Customer Reviews"
|
||||
description="See why our local community trusts Munna Enterprises."
|
||||
@@ -193,22 +136,14 @@ export default function LandingPage() {
|
||||
description="Have questions or need a product? Give us a call or visit the shop."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help you?",
|
||||
required: true,
|
||||
name: "message", placeholder: "How can we help you?", required: true,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blurred-people-ordering-food_1203-1611.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -220,37 +155,23 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24226.jpg?_wi=2"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#home",
|
||||
},
|
||||
label: "Home", href: "#home"},
|
||||
{
|
||||
label: "Products",
|
||||
href: "#products",
|
||||
},
|
||||
label: "Products", href: "#products"},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About Us", href: "#about"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact", href: "#contact"},
|
||||
{
|
||||
label: "WhatsApp Us",
|
||||
href: "https://wa.me/yournumber",
|
||||
},
|
||||
label: "WhatsApp Us", href: "https://wa.me/yournumber"},
|
||||
{
|
||||
label: "Call Now",
|
||||
href: "tel:+910000000000",
|
||||
},
|
||||
label: "Call Now", href: "tel:+910000000000"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user