diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 79ba752..82c5611 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -15,7 +15,7 @@ export default function LandingPage() { defaultTextAnimation="background-highlight" borderRadius="soft" contentWidth="mediumLarge" - sizing="mediumSizeLargeTitles" + sizing="largeSizeMediumTitles" background="aurora" cardStyle="gradient-mesh" primaryButtonStyle="radial-glow" @@ -26,22 +26,10 @@ export default function LandingPage() { @@ -66,36 +52,11 @@ export default function LandingPage() { title="Our Achievements" description="Growing with our community one home at a time." metrics={[ - { - id: "am1", - icon: Heart, - title: "Happy Families", - value: "300+", - }, - { - id: "am2", - icon: MapPin, - title: "Neighborhoods", - value: "15", - }, - { - id: "am3", - icon: Star, - title: "Quality Score", - value: "4.9/5", - }, - { - id: "am4", - icon: TrendingUp, - title: "Growth Rate", - value: "40%", - }, - { - id: "am5", - icon: Users, - title: "Loyal Clients", - value: "120", - }, + { id: "am1", icon: Heart, title: "Happy Families", value: "300+" }, + { id: "am2", icon: MapPin, title: "Neighborhoods", value: "15" }, + { id: "am3", icon: Star, title: "Quality Score", value: "4.9/5" }, + { id: "am4", icon: TrendingUp, title: "Growth Rate", value: "40%" }, + { id: "am5", icon: Users, title: "Loyal Clients", value: "120" }, ]} /> @@ -105,46 +66,23 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "Services", - href: "/services", - }, - { - label: "About Us", - href: "/about", - }, - { - label: "Book Now", - href: "/contact", - }, + { label: "Services", href: "/services" }, + { label: "About Us", href: "/about" }, + { label: "Book Now", href: "/contact" }, ], }, { items: [ - { - label: "Residential", - href: "/services", - }, - { - label: "Commercial", - href: "/services", - }, - { - label: "Deep Cleaning", - href: "/services", - }, + { label: "Residential", href: "/services" }, + { label: "Commercial", href: "/services" }, + { label: "Deep Cleaning", href: "/services" }, ], }, { items: [ - { - label: "Contact", - href: "/contact", - }, - { - label: "Email Info", - href: "mailto:info@masuarezcleaning.com", - }, + { label: "Contact", href: "/contact" }, + { label: "masuarezbussines@gmail.com", href: "mailto:masuarezbussines@gmail.com" }, + { label: "(904)-908-7818", href: "tel:9049087818" }, ], }, ]} @@ -154,4 +92,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index a43703f..4cf84f3 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,8 +2,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactText from '@/components/sections/contact/ContactText'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -14,7 +14,7 @@ export default function LandingPage() { defaultTextAnimation="background-highlight" borderRadius="soft" contentWidth="mediumLarge" - sizing="mediumSizeLargeTitles" + sizing="largeSizeMediumTitles" background="aurora" cardStyle="gradient-mesh" primaryButtonStyle="radial-glow" @@ -25,22 +25,10 @@ export default function LandingPage() {