Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -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."
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use client';
|
||||
|
||||
import { ThemeProvider } from "next-themes";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
|
||||
@@ -9,7 +9,6 @@ import { Sparkles, CheckCircle } from 'lucide-react';
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
attribute="class"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
@@ -103,7 +102,7 @@ export default function ServicesPage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="fade-in"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -178,7 +177,7 @@ export default function ServicesPage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="fade-in"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -252,7 +251,7 @@ export default function ServicesPage() {
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="fade-in"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user