Update src/components/Layout.tsx

This commit is contained in:
2026-06-21 12:44:35 +00:00
parent 94e54374d1
commit 459cf73e9b

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
}
];
@@ -42,86 +35,60 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Platform Logo"
logoImageSrc="https://images.unsplash.com/photo-1614680376573-df3480f0c6ff?q=80&w=100&auto=format&fit=crop"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
logo="Platform Logo"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=xxswyn"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Platform Builder"
columns={[
{
title: "Platform",
items: [
brand="Platform Builder"
columns={[
{
label: "Features",
href: "#features",
title: "Platform", items: [
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#pricing"},
{
label: "Storefront", href: "#"},
],
},
{
label: "Pricing",
href: "#pricing",
title: "Support", items: [
{
label: "Help Center", href: "#"},
{
label: "Guides", href: "#"},
{
label: "Contact Us", href: "#contact"},
],
},
{
label: "Storefront",
href: "#",
title: "Company", items: [
{
label: "About", href: "#"},
{
label: "Careers", href: "#"},
{
label: "Privacy", href: "#"},
],
},
],
},
{
title: "Support",
items: [
]}
copyright="© 2024 Platform Builder, Inc. All rights reserved."
links={[
{
label: "Help Center",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Guides",
href: "#",
},
{
label: "Contact Us",
href: "#contact",
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Privacy",
href: "#",
},
],
},
]}
copyright="© 2024 Platform Builder, Inc. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=xxswyn"
/>
label: "LinkedIn", href: "#"},
]}
imageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=xxswyn"
/>
</SectionErrorBoundary>
</StyleProvider>
);