Merge version_1_1781432708339 into main #1

Merged
bender merged 2 commits from version_1_1781432708339 into main 2026-06-14 10:26:13 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="USA Flower Shop"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=eom8qv"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
text: "Order Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,42 +50,28 @@ export default function Layout() {
brand="USA Flower Shop"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
],
},
]}
copyright="© 2024 USA Flower Shop Inc."
links={[
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
]}
/>
</SectionErrorBoundary>