diff --git a/src/app/page.tsx b/src/app/page.tsx index 193891c..58f5e04 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from "@/components/theme-provider"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroSplit from '@/components/sections/hero/HeroSplit'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; @@ -10,7 +10,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Kitchenette, ChefHat, Grass } from "lucide-react"; +import { CookingPot, ChefHat, Leaf } from "lucide-react"; export default function Home() { const navItems = [ @@ -59,9 +59,10 @@ export default function Home() { description="From deep cleaning your outdoor kitchen to revitalizing your grill and maintaining pristine artificial turf, our Austin-based team ensures your outdoor living areas are immaculate and inviting." animationType="scale-rotate" useInvertedBackground={false} + textboxLayout="default" features={[ { - icon: Kitchenette, + icon: CookingPot, title: "Outdoor Kitchen Cleaning", description: "Thorough cleaning of countertops, cabinets, appliances, and surfaces to remove grime, grease, and stains, making your Austin outdoor kitchen shine." }, { @@ -69,7 +70,7 @@ export default function Home() { title: "Professional Grill Cleaning", description: "Degreasing and deep cleaning of all grill components, including grates, burners, igniters, and hoods, for optimal performance and hygiene across Austin homes." }, { - icon: Grass, + icon: Leaf, title: "Artificial Turf Maintenance", description: "Expert cleaning and rejuvenation for artificial turf, removing debris, pet odors, and restoring its lush appearance for residences and commercial spaces in Austin." } ]}