2 Commits

Author SHA1 Message Date
4e02dfd471 Update src/app/page.tsx 2026-05-01 03:13:02 +00:00
7a87a60568 Merge version_1 into main
Merge version_1 into main
2026-05-01 03:01:51 +00:00

View File

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