Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-05-05 06:04:25 +00:00

View File

@@ -13,7 +13,8 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Award, Star, Zap, MessageSquareQuote } from "lucide-react";
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import { Award, Star, Zap, MessageSquareQuote, DollarSign, BookOpen, BarChart3, PiggyBank } from "lucide-react";
export default function LandingPage() {
return (
@@ -36,6 +37,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Reviews", id: "reputation" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
@@ -55,10 +57,7 @@ export default function LandingPage() {
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-switchboard-with-electrical-connection-cable-copy-space_169016-52810.jpg?_wi=1", imageAlt: "Electrician working" },
{ imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-standing-gas-station_1157-33277.jpg?_wi=1", imageAlt: "EV charger install" },
{ imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29980.jpg?_wi=1", imageAlt: "Solar wiring" },
{ imageSrc: "http://img.b2bpic.net/free-photo/afro-woman-fixing-electricity-problem-home_58466-10803.jpg?_wi=1", imageAlt: "Customer service" },
{ imageSrc: "http://img.b2bpic.net/free-photo/person-looking-mobile-phone-with-lighting-controlling-app-sitting-kitchen-house-with-automation-light-system-turning-bulb-using-voice-command_482257-2272.jpg?_wi=1", imageAlt: "Smart lighting" },
{ imageSrc: "http://img.b2bpic.net/free-photo/lamp-against-red-brick-wall-night_1339-3098.jpg", imageAlt: "Outdoor lighting" }
{ imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29980.jpg?_wi=1", imageAlt: "Solar wiring" }
]}
/>
</div>
@@ -94,6 +93,23 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive
animationType="slide-up"
title="Pricing & Finance"
description="We believe in transparent, value-based financial practices that protect your investment."
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "p1", tag: "Value", tagIcon: DollarSign,
price: "Value-Based", period: "Pricing", description: "We price by the value of the solution delivered, not just the hours spent.", button: { text: "Learn More", href: "#contact" },
featuresTitle: "Core Financial Principles", features: ["Always provide written quotes upfront", "Track individual job profitability", "Set aside 25-30% for taxes in a business account"]
}
]}
/>
</div>
<div id="reputation" data-section="reputation">
<TestimonialCardTwo
title="Our Reputation"
@@ -111,50 +127,6 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
useInvertedBackground={false}
products={[
{ id: "p1", name: "Safety Inspection", price: "$149", variant: "Comprehensive", imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-53728.jpg" },
{ id: "p2", name: "Panel Upgrade", price: "$1,200+", variant: "Heavy Duty", imageSrc: "http://img.b2bpic.net/free-photo/male-military-general-portrait_23-2149222040.jpg" },
{ id: "p3", name: "Smart Hub Setup", price: "$299", variant: "Automation", imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-audits-switchgear-with-tablet-smart-maintenance_169016-71427.jpg" }
]}
title="Professional Electrical Solutions"
description="Transparent pricing for common professional services. Get reliable work done right the first time."
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah J.", date: "Jan 2025", title: "Homeowner", quote: "Professional, punctual, and highly efficient. Highly recommend!", tag: "EV Charger", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-business-man_23-2148514859.jpg", imageSrc: "http://img.b2bpic.net/free-photo/electrician-working-switchboard-with-electrical-connection-cable-copy-space_169016-52810.jpg?_wi=2" },
{ id: "2", name: "Michael C.", date: "Dec 2024", title: "Business Owner", quote: "Reliable work for our commercial office setup.", tag: "General Electrical", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-standing-gas-station_1157-33277.jpg?_wi=2" }
]}
title="What San Diego Says"
description="See why our neighbors trust Bright Axis for their home electrical needs."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "m1", icon: Star, title: "Client Rating", value: "5.0" },
{ id: "m2", icon: Zap, title: "Jobs Completed", value: "500+" },
{ id: "m3", icon: Award, title: "Years Experience", value: "15+" }
]}
title="Service Excellence"
description="Our commitment to quality translates into tangible results for our clients."
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={true}