diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 30edcdf..491740e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,11 +1,14 @@ "use client"; +"use client"; + import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Shield } from "lucide-react"; import Link from "next/link"; export default function AboutPage() { @@ -52,26 +55,26 @@ export default function AboutPage() { background={{ variant: "radial-gradient" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969878.jpg?_wi=3", + imageSrc: "http://img.b2bpic.net/free-photo/labor-union-members-working-together_23-2150969878.jpg", imageAlt: "professional cleaning team group photo", }, { - imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cleaning-indoors_23-2150454545.jpg?_wi=5", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-cleaning-indoors_23-2150454545.jpg", imageAlt: "professional office cleaning team working efficiently", }, ]} rightCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/female-healthcare-worker-coughing-while-working-hospital-covid19-epidemic_637285-5058.jpg?_wi=5", + imageSrc: "http://img.b2bpic.net/free-photo/female-healthcare-worker-coughing-while-working-hospital-covid19-epidemic_637285-5058.jpg", imageAlt: "medical clinic professional cleaning", }, { - imageSrc: "http://img.b2bpic.net/free-photo/female-person-feeling-tired-after-finishing-spring-cleaning-sitting-clean-wooden-floor-with-mop-gloves-young-sleepy-woman-being-proud-tidy-apartment-household-chores-finished_482257-59836.jpg?_wi=5", + imageSrc: "http://img.b2bpic.net/free-photo/female-person-feeling-tired-after-finishing-spring-cleaning-sitting-clean-wooden-floor-with-mop-gloves-young-sleepy-woman-being-proud-tidy-apartment-household-chores-finished_482257-59836.jpg", imageAlt: "apartment building cleaning service", }, ]} tag="Company History" - tagIcon="Shield" + tagIcon={Shield} tagAnimation="slide-up" carouselPosition="right" ariaLabel="About section showcasing company history and experience" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 68ed691..2fbabf6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,9 +1,12 @@ "use client"; +"use client"; + import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Sparkles } from "lucide-react"; import Link from "next/link"; export default function ContactPage() { @@ -45,7 +48,7 @@ export default function ContactPage() { tag="Get In Touch" title="Request Your Free Cleaning Quote" description="Tell us about your commercial space and cleaning needs. Our team will provide a customized quote and discuss how we can keep your facility spotless and professional." - tagIcon="Sparkles" + tagIcon={Sparkles} tagAnimation="slide-up" background={{ variant: "radial-gradient" }} useInvertedBackground={false}