Compare commits

...

10 Commits

Author SHA1 Message Date
27198b3eb4 Update src/app/privacy/page.tsx 2026-05-04 01:19:47 +00:00
976caa88bd Update src/app/pricing/page.tsx 2026-05-04 01:19:47 +00:00
bd937ac24a Update src/app/page.tsx 2026-05-04 01:19:46 +00:00
0c5129b01b Update src/app/fleet/page.tsx 2026-05-04 01:19:46 +00:00
d010c03b36 Update src/app/estimate/page.tsx 2026-05-04 01:19:45 +00:00
c05ede69c5 Update src/app/contact-us/page.tsx 2026-05-04 01:19:44 +00:00
e6f1987cf2 Update src/app/contact/page.tsx 2026-05-04 01:19:44 +00:00
3e1cf10319 Merge version_121 into main
Merge version_121 into main
2026-05-04 01:16:45 +00:00
6479d1e829 Update src/app/page.tsx 2026-05-04 01:16:42 +00:00
01ddc588b3 Merge version_120 into main
Merge version_120 into main
2026-05-04 01:15:28 +00:00
7 changed files with 84 additions and 41 deletions

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Instagram } from "lucide-react";
export default function ContactUsPage() {
return (
@@ -51,13 +52,18 @@ export default function ContactUsPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Instagram } from "lucide-react";
export default function ContactPage() {
return (
@@ -52,13 +53,18 @@ export default function ContactPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText="CleanScene"
/>
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText="CleanScene"
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Instagram } from "lucide-react";
export default function EstimatePage() {
return (
@@ -56,13 +57,18 @@ export default function EstimatePage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -7,6 +7,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { useState } from 'react';
import { Instagram } from "lucide-react";
export default function FleetPage() {
const [popupContent, setPopupContent] = useState<{title: string, body: string} | null>(null);
@@ -108,13 +109,18 @@ export default function FleetPage() {
)}
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -8,6 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Instagram } from "lucide-react";
export default function LandingPage() {
return (
@@ -106,17 +107,23 @@ export default function LandingPage() {
/>
</div>
<div className="flex justify-center gap-8 py-12" data-section="badges">
<img src="https://www.theknot.com/tk-assets/web/badges/best-of-weddings-2024.png" alt="The Knot Best of Weddings 2024" className="h-24" />
<img src="https://www.theknot.com/tk-assets/web/badges/hall-of-fame-2024.png" alt="The Knot Hall of Fame 2024" className="h-24" />
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
<div className="flex justify-center gap-8 py-8">
<img src="https://www.theknot.com/tk-assets/web/badges/best-of-weddings-2024.png" alt="The Knot Best of Weddings 2024" className="h-24" />
<img src="https://www.theknot.com/tk-assets/web/badges/hall-of-fame-2024.png" alt="The Knot Hall of Fame 2024" className="h-24" />
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
</div>
</div>
</ReactLenis>

View File

@@ -5,6 +5,7 @@ import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Instagram } from "lucide-react";
export default function PricingPage() {
return (
@@ -56,13 +57,18 @@ export default function PricingPage() {
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText="CleanScene"
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Instagram } from "lucide-react";
export default function PrivacyPage() {
return (
@@ -43,13 +44,18 @@ export default function PrivacyPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<div className="flex flex-col items-center py-8">
<a href="https://www.instagram.com/cleanscene" target="_blank" rel="noopener noreferrer" aria-label="Follow CleanScene on Instagram" className="mb-4 text-[#0a7039] hover:opacity-80 transition-opacity">
<Instagram size={32} />
</a>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Our Premium Fleet", href: "/fleet" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Contact Us", href: "/contact-us" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms", href: "/terms" }] },
]}
logoText=""
/>
/>
</div>
</div>
</ReactLenis>
</ThemeProvider>