Merge version_1_1781708932545 into main #1

Merged
bender merged 2 commits from version_1_1781708932545 into main 2026-06-17 15:09:57 +00:00

View File

@@ -7,97 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
}
];
{ "name": "Features", "href": "#features" },
{ "name": "Pricing", "href": "#pricing" },
{ "name": "Testimonials", "href": "#testimonials" },
{ "name": "Hero", "href": "#hero" },
{ "name": "About", "href": "#about" },
{ "name": "Metrics", "href": "#metrics" },
{ "name": "Faq", "href": "#faq" }
];
return (
<StyleProvider buttonVariant="arrow" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Launchoras"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
logo="Launchoras"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=slkqlt"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Platform",
items: [
columns={[
{
label: "Features",
href: "#features",
title: "Platform", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
],
},
{
label: "Pricing",
href: "#pricing",
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#about",
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
],
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
leftText="© 2024 Launchoras. All rights reserved."
rightText="Designed with precision."
/>
]}
leftText="© 2024 Launchoras. All rights reserved."
rightText="Designed with precision."
/>
</SectionErrorBoundary>
</StyleProvider>
);