Compare commits

...

19 Commits

Author SHA1 Message Date
289f75e6c7 Update src/app/pricing/page.tsx 2026-05-03 19:41:44 +00:00
953383b584 Update src/app/page.tsx 2026-05-03 19:41:43 +00:00
be73e8ac80 Update src/app/fleet/page.tsx 2026-05-03 19:41:43 +00:00
65598a7d3c Update src/app/estimate/page.tsx 2026-05-03 19:41:42 +00:00
3dda57dd9e Update src/app/contact-us/page.tsx 2026-05-03 19:41:42 +00:00
3d6b857ebe Update src/app/contact/page.tsx 2026-05-03 19:41:41 +00:00
83f6c73858 Merge version_90 into main
Merge version_90 into main
2026-05-03 19:40:32 +00:00
cc29a7c46c Update src/app/page.tsx 2026-05-03 19:40:28 +00:00
0e0328c61c Update src/app/fleet/page.tsx 2026-05-03 19:40:28 +00:00
c411c7d34b Update src/app/estimate/page.tsx 2026-05-03 19:40:27 +00:00
9ba5204a76 Update src/app/contact-us/page.tsx 2026-05-03 19:40:27 +00:00
9059871113 Update src/app/contact/page.tsx 2026-05-03 19:40:26 +00:00
c07d787343 Switch to version 88: modified src/app/pricing/page.tsx 2026-05-03 19:38:28 +00:00
08d8aeec31 Switch to version 88: modified src/app/page.tsx 2026-05-03 19:38:27 +00:00
3ff0288231 Switch to version 88: modified src/app/fleet/page.tsx 2026-05-03 19:38:27 +00:00
516e1ceb17 Switch to version 88: modified src/app/estimate/page.tsx 2026-05-03 19:38:26 +00:00
15f75ed44b Switch to version 88: modified src/app/contact/page.tsx 2026-05-03 19:38:26 +00:00
8ab7e6d066 Switch to version 88: modified src/app/contact-us/page.tsx 2026-05-03 19:38:25 +00:00
d7b09931f9 Merge version_89 into main
Merge version_89 into main
2026-05-03 19:35:34 +00:00
6 changed files with 172 additions and 171 deletions

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function ContactUsPage() {
return (
@@ -22,15 +22,15 @@ export default function ContactUsPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Get My Free Estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
@@ -51,7 +51,7 @@ export default function ContactUsPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Home", href: "/" }, { label: "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"

View File

@@ -4,9 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -22,15 +22,15 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Get My Free Estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
@@ -52,7 +52,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Home", href: "/" }, { label: "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"

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function EstimatePage() {
return (
@@ -22,15 +22,15 @@ export default function EstimatePage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Get My Free Estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
@@ -56,7 +56,7 @@ export default function EstimatePage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Home", href: "/" }, { label: "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"

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -22,15 +22,15 @@ export default function FleetPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Get My Free Estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
@@ -53,7 +53,7 @@ export default function FleetPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Home", href: "/" }, { label: "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"

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
@@ -25,15 +25,15 @@ export default function LandingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
{ name: "Pricing", id: "/pricing" },
{ name: "Get My Free Estimate", id: "/estimate" },
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
@@ -106,7 +106,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Fleet", href: "/fleet" }, { label: "Pricing", href: "/pricing" }, { label: "Get My Free Estimate", href: "/estimate" }] },
{ items: [{ label: "Home", href: "/" }, { label: "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=""

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
@@ -22,7 +22,7 @@ export default function PricingPage() {
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Fleet", id: "/fleet" },
@@ -31,6 +31,7 @@ export default function PricingPage() {
{ name: "Contact us", id: "/contact-us" },
]}
brandName="CleanScene"
button={{ text: "Get My Free Estimate", href: "/estimate" }}
/>
</div>
<div id="pricing" data-section="pricing">