Update src/app/page.tsx

This commit is contained in:
2026-05-01 03:13:02 +00:00
parent 7a87a60568
commit 4e02dfd471

View File

@@ -139,9 +139,12 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
tag="Get in touch"
title="Start your custom piece today"
description="Ready to design your dream jewelry? Speak with our master jewelers today."
buttons={[{ text: "Start Design", href: "mailto:royaltick@jewelry.com" }]}
title="Contact our Master Jewelers"
description="Schedule a private consultation or discuss your dream custom piece with our team."
buttons={[
{ text: "Email Us", href: "mailto:support@royaltick.com" },
{ text: "Call (555) 123-4567", href: "tel:+15551234567" }
]}
/>
</div>
@@ -150,15 +153,24 @@ export default function LandingPage() {
columns={[
{
items: [
{ label: "Shop", href: "#products" },
{ label: "Shop Collections", href: "#products" },
{ label: "Custom Design", href: "#" },
{ label: "Jewelry Care", href: "#" },
{ label: "FAQ", href: "#faq" },
],
},
{
items: [
{ label: "About Us", href: "#about" },
{ label: "Contact Support", href: "#contact" },
{ label: "Track Your Order", href: "#" },
],
},
{
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Shipping Policy", href: "#" },
],
},
]}