Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #13.
This commit is contained in:
2026-04-02 23:23:46 +00:00
2 changed files with 32 additions and 51 deletions

View File

@@ -11,8 +11,8 @@ import { Libre_Baskerville, Inter } from "next/font/google";
export const metadata: Metadata = {
title: 'Welcome to Our Platform',
description: 'Experience the future of digital solutions with our innovative tools.',
title: 'Western MT Plumbing & Heating | Reliable Missoula Plumbing',
description: 'Owner-operated plumbing and heating services in Missoula, MT. Reliable, high-quality, professional solutions for your home.',
openGraph: {
"title": "Western MT Plumbing & Heating",
"description": "Reliable, owner-operated plumbing and heating in Missoula.",

View File

@@ -1,6 +1,4 @@
'use client';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
@@ -9,15 +7,11 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Zap, Star, Mail, MapPin, ArrowRight } from 'lucide-react';
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'About', id: '/about' },
{ name: 'Contact', id: '/contact' },
{ name: 'Booking', id: '/booking' }
];
const navItems = [{ name: "Home", id: "/" }];
export default function Page() {
export default function HomePage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -36,64 +30,51 @@ export default function Page() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Welcome to Our Platform"
description="Experience the future of digital solutions with our innovative tools."
background={{ variant: "gradient-bars" }}
mediaItems={[{ imageSrc: "https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1600", imageAlt: "Digital innovation" }]}
title="Western MT Plumbing & Heating"
description="Reliable, owner-operated plumbing and heating in Missoula."
background={{ variant: "plain" }}
mediaItems={[{ imageSrc: "https://images.unsplash.com/photo-1585704032915-c3400ca199e7?q=80&w=2070&auto=format&fit=crop" }]}
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwelve
animationType="blur-reveal"
title="Our Services"
description="Comprehensive solutions designed for your growth."
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: '1', label: 'Tech', title: 'Technology', items: ['AI Integration', 'Cloud Services'] },
{ id: '2', label: 'Consult', title: 'Consulting', items: ['Strategy', 'Execution'] }
]}
<FeatureCardTwelve
title="Our Services"
animationType="blur-reveal"
textboxLayout="default"
features={[{ id: "1", label: "Plumbing", title: "Full Service Plumbing", items: ["Repair", "Installation"], buttons: [{ text: "Get Quote", href: "#contact" }] }]}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[{ type: 'text', content: 'About Us' }, { type: 'image', src: 'https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=800', alt: 'Team' }]}
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "Expertise You Can Trust" }]}
buttons={[{ text: "Read More", href: "#" }]}
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardTwelve
cardTitle="Client Success"
cardTag="Testimonials"
cardAnimation="blur-reveal"
useInvertedBackground={false}
testimonials={[
{ id: '1', name: 'John Doe', imageSrc: 'https://i.pravatar.cc/150?u=1' },
{ id: '2', name: 'Jane Smith', imageSrc: 'https://i.pravatar.cc/150?u=2' },
{ id: '3', name: 'Alex Brown', imageSrc: 'https://i.pravatar.cc/150?u=3' }
]}
<TestimonialCardTwelve
cardTitle="Customer Success"
cardAnimation="blur-reveal"
testimonials={[{ id: "1", name: "John Doe", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?q=80&w=200&auto=format&fit=crop" }]}
/>
</div>
<div id="booking" data-section="booking">
<ContactCTA
tag="Appointment"
title="Book Your Session"
description="Schedule a time that works best for your needs."
<ContactCTA
tag="Ready to start?"
title="Book Your Appointment"
description="Contact us today to schedule your service."
buttons={[{ text: "Schedule Now", href: "#contact" }]}
background={{ variant: "plain" }}
buttons={[{ text: "Schedule Now", href: "#" }]}
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Get in touch today"
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
<ContactText
text="Get in Touch"
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[{ title: 'Company', items: [{ label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' }, { label: 'Booking', href: '/booking' }] }]}
<FooterBase
columns={[{ title: "Contact", items: [{ label: "hello@westernmtplumbing.com", href: "mailto:hello@westernmtplumbing.com" }] }]}
/>
</div>
</ThemeProvider>