Update src/app/contact/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -25,44 +25,23 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Our Diamonds",
|
||||
id: "/diamonds",
|
||||
},
|
||||
{
|
||||
name: "Provenance",
|
||||
id: "/provenance",
|
||||
},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Our Diamonds", id: "/diamonds" },
|
||||
{ name: "Provenance", id: "/provenance" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Sparkles & More"
|
||||
button={{ text: "Enquire", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-form" data-section="contact-form">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
text="Book a Private Viewing for an exclusive, tailored experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:consult@sparklesandmore.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:consult@sparklesandmore.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,37 +54,15 @@ export default function LandingPage() {
|
||||
description="Tailored luxury planning."
|
||||
plans={[
|
||||
{
|
||||
id: "c1",
|
||||
title: "Basic Consultation",
|
||||
price: "Complimentary",
|
||||
period: "N/A",
|
||||
features: [
|
||||
"1 hour session",
|
||||
"Expert guidance",
|
||||
],
|
||||
button: {
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg?_wi=5",
|
||||
imageAlt: "emerald cut diamond macro",
|
||||
id: "c1", title: "Basic Consultation", price: "Complimentary", period: "N/A", features: ["1 hour session", "Expert guidance"],
|
||||
button: { text: "Book Now", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-colorful-lights_23-2147960130.jpg", imageAlt: "emerald cut diamond macro"
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
title: "Investment Advisory",
|
||||
price: "By Request",
|
||||
period: "N/A",
|
||||
features: [
|
||||
"Full portfolio review",
|
||||
"Market insights",
|
||||
],
|
||||
button: {
|
||||
text: "Book Now",
|
||||
href: "/contact",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg?_wi=4",
|
||||
imageAlt: "diamond rings macro photography",
|
||||
},
|
||||
id: "c2", title: "Investment Advisory", price: "By Request", period: "N/A", features: ["Full portfolio review", "Market insights"],
|
||||
button: { text: "Book Now", href: "/contact" },
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409286.jpg", imageAlt: "diamond rings macro photography"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user