Update src/app/page.tsx

This commit is contained in:
2026-01-12 14:45:11 +00:00
parent bd11e08128
commit b37434b3db

View File

@@ -3,6 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import ButtonExpandHover from '@/components/button/ButtonExpandHover';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
@@ -49,6 +50,12 @@ export default function LandingPage() {
imageAlt="Professional acrylic nail designs showcasing intricate nail art"
frameStyle="card"
/>
<div className="flex justify-center mt-8">
<ButtonExpandHover
text="Book Your Appointment"
href="contact"
/>
</div>
</div>
<div id="services" data-section="services">
@@ -227,4 +234,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}