Update src/app/page.tsx

This commit is contained in:
2026-06-10 08:50:02 +00:00
parent c5126a7403
commit 5048c7676c

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
@@ -32,7 +32,7 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "#home"},
name: "Home", id: "/"},
{
name: "About", id: "#about"},
{
@@ -42,11 +42,11 @@ export default function LandingPage() {
{
name: "Testimonials", id: "#testimonials"},
{
name: "Contact", id: "#contact"},
name: "Contact", id: "/contact-us"},
]}
brandName="Aetheria Luxuries"
button={{
text: "Get a Quote", href: "#contact"}}
text: "Get a Quote", href: "/contact-us"}}
/>
</div>
@@ -211,21 +211,6 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
tag="Connect With Us"
title="Begin Your Journey to Luxury"
description="Contact us for bespoke services, personal consultations, or inquiries about our exclusive collections."
tagAnimation="none"
inputPlaceholder="Your Email Address"
buttonText="Send Inquiry"
termsText="By clicking Send Inquiry, you agree to our Privacy Policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
@@ -242,7 +227,7 @@ export default function LandingPage() {
{
title: "Support", items: [
{
label: "Contact", href: "#contact"},
label: "Contact", href: "/contact-us"},
{
label: "FAQs", href: "#"},
{
@@ -265,4 +250,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}