19 Commits

Author SHA1 Message Date
e687c43fac Merge version_1 into main
Merge version_1 into main
2026-04-02 23:43:47 +00:00
34c3e38a1c Update src/app/page.tsx 2026-04-02 23:43:44 +00:00
27d22fd7df Merge version_1 into main
Merge version_1 into main
2026-04-02 23:41:10 +00:00
70720380b0 Update src/app/page.tsx 2026-04-02 23:41:04 +00:00
d89cb4b570 Merge version_1 into main
Merge version_1 into main
2026-04-02 23:40:37 +00:00
2903d25cf4 Update src/app/page.tsx 2026-04-02 23:40:35 +00:00
36d1f49870 Update src/app/layout.tsx 2026-04-02 23:40:34 +00:00
0dda474273 Switch to version 1: modified src/app/page.tsx 2026-04-02 23:31:30 +00:00
5ba7371395 Switch to version 1: modified src/app/layout.tsx 2026-04-02 23:31:30 +00:00
7a1f856825 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:26:52 +00:00
9ba062f0a8 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:26:23 +00:00
bbbf0a83b5 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:25:54 +00:00
d4450a416b Merge version_2 into main
Merge version_2 into main
2026-04-02 23:25:27 +00:00
6a3a19a575 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:24:56 +00:00
7fd9545882 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:24:25 +00:00
d1c4217630 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:23:46 +00:00
eea4bc60d2 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:23:13 +00:00
2ad6223f7e Merge version_2 into main
Merge version_2 into main
2026-04-02 23:22:43 +00:00
5137bffba8 Merge version_2 into main
Merge version_2 into main
2026-04-02 23:22:13 +00:00
2 changed files with 33 additions and 53 deletions

View File

@@ -11,8 +11,8 @@ import { Libre_Baskerville, Inter } from "next/font/google";
export const metadata: Metadata = {
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.',
title: 'Home | Western MT Plumbing & Heating',
description: 'Reliable, owner-operated plumbing and heating in Missoula.',
openGraph: {
"title": "Western MT Plumbing & Heating",
"description": "Reliable, owner-operated plumbing and heating in Missoula.",

View File

@@ -1,23 +1,21 @@
'use client';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
"use client";
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';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import { CalendarDays } from 'lucide-react';
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'About', id: '/about' },
{ name: 'Contact', id: '/contact' }
];
export default function Page() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -36,65 +34,47 @@ 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", imageAlt: "Plumbing services" }]}
/>
</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'] }
]}
/>
</div>
<div id="booking" data-section="booking">
<ContactCTA
tag="Booking"
tagIcon={CalendarDays}
title="Schedule Your Appointment"
description="Book a time that works best for you and our team."
buttons={[{ text: "Book Now", href: "#contact" }]}
background={{ variant: "plain" }}
<FeatureCardTwelve
title="Our Services"
description="Expert plumbing and heating solutions."
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
features={[{ id: "1", label: "Plumbing", title: "Plumbing Repair", items: ["Leak detection", "Pipe repair", "Drain cleaning"] }, { id: "2", label: "Heating", title: "Heating Services", items: ["Boiler service", "Furnace repair", "Radiant heat"] }]}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
<InlineImageSplitTextAbout
heading={[{ type: "text", content: "About Our Team" }]}
useInvertedBackground={false}
heading={[{ type: 'text', content: 'About Us' }, { type: 'image', src: 'https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=800', alt: 'Team' }]}
/>
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardTwelve
cardTitle="Client Success"
cardTag="Testimonials"
cardAnimation="blur-reveal"
<TestimonialCardTwelve
testimonials={[{ id: "1", name: "John Doe", imageSrc: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde" }, { id: "2", name: "Jane Smith", imageSrc: "https://images.unsplash.com/photo-1527980965255-d3b416303d12" }]}
cardTitle="What Our Clients Say"
cardTag="Reviews"
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' }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Get in touch today"
background={{ variant: "gradient-bars" }}
<ContactText
text="Get in touch with us for your plumbing and heating needs."
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[{ title: 'Company', items: [{ label: 'About', href: '/about' }, { label: 'Contact', href: '/contact' }] }]}
<FooterBase
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Reviews", href: "/reviews" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ThemeProvider>