Update src/app/page.tsx

This commit is contained in:
2026-06-09 22:54:54 +00:00
parent d4350ef760
commit 0515f174ce

View File

@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Schedule Consultation", href: "contact" }}
button={{ text: "Schedule Consultation", href: "#contact" }}
/>
</div>
@@ -50,8 +50,8 @@ export default function LandingPage() {
tag="Premium Collections"
tagIcon={Sparkles}
buttons={[
{ text: "Explore Properties", href: "properties" },
{ text: "Contact Agent", href: "contact" }
{ text: "Explore Properties", href: "#properties" },
{ text: "Contact Agent", href: "#contact" }
]}
mediaItems={[
{
@@ -86,7 +86,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
buttons={[
{ text: "See all properties", href: "/properties" }
{ text: "See all properties", href: "#properties" }
]}
products={[
{
@@ -112,7 +112,7 @@ export default function LandingPage() {
imageAlt="Luxe Properties Dubai team"
useInvertedBackground={false}
buttons={[
{ text: "Learn Our Story", href: "#" }
{ text: "Learn Our Story", href: "#about" }
]}
/>
</div>
@@ -244,7 +244,7 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Schedule Consultation", href: "#" },
{ text: "Schedule Consultation", href: "#contact" },
{ text: "Learn More", href: "#about" }
]}
/>
@@ -290,4 +290,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}