From 4e02dfd47139bb194f133d41c965b456cb193e89 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 03:13:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0a6d4b1..9120867 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } + ]} /> @@ -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: "#" }, ], }, ]} -- 2.49.1