Update src/app/custom/page.tsx

This commit is contained in:
2026-05-13 11:18:54 +00:00
parent 8834f78495
commit c5caa37d58

View File

@@ -25,30 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Collections",
id: "/collections",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Custom Orders",
id: "/custom",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Collections", id: "/collections" },
{ name: "Gallery", id: "/gallery" },
{ name: "Custom Orders", id: "/custom" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Help", id: "/help" }
]}
brandName="EverBloom Bridal"
/>
@@ -59,18 +42,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Order Custom Florals"
description="Tell us your vision."
inputs={[
{
name: "name",
type: "text",
placeholder: "Name",
},
{
name: "date",
type: "date",
placeholder: "Wedding Date",
},
]}
inputs={[{ name: "name", type: "text", placeholder: "Name" }, { name: "date", type: "date", placeholder: "Wedding Date" }]}
imageSrc="http://img.b2bpic.net/free-photo/male-florist-makes-bouquet-roses_169016-24133.jpg"
/>
</div>
@@ -82,73 +54,18 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Our Custom Process"
description="From sketch to final bloom."
negativeCard={{
items: [
"Initial Consultation",
"Color Matching",
],
}}
positiveCard={{
items: [
"Design Proofs",
"Final Creation",
],
}}
negativeCard={{ items: ["Initial Consultation", "Color Matching"] }}
positiveCard={{ items: ["Design Proofs", "Final Creation"] }}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Collections",
href: "/collections",
},
{
label: "Gallery",
href: "/gallery",
},
],
},
{
items: [
{
label: "Custom Orders",
href: "/custom",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
items: [
{
label: "Instagram",
href: "https://instagram.com",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] }, { items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }, { items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }]}
logoText="EverBloom Bridal"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}