Merge version_1_1781369716881 into main #1

Merged
bender merged 2 commits from version_1_1781369716881 into main 2026-06-13 16:56:17 +00:00

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": "How it Works",
"href": "#how-it-works"
"name": "How it Works", "href": "#how-it-works"
},
{
"name": "Showcase",
"href": "#showcase"
"name": "Showcase", "href": "#showcase"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Stats",
"href": "#stats"
"name": "Stats", "href": "#stats"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,50 +35,40 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Duom Cepte"
ctaButton={{
text: "Get Started",
href: "#cta",
}}
navItems={navItems} />
logo="Duom Cepte"
logoImageSrc="http://img.b2bpic.net/free-vector/geometric-icon-collecti_1408-27.jpg"
ctaButton={{
text: "Get Started", href: "#cta"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Duom Cepte © 2024"
columns={[
{
items: [
brand="Duom Cepte © 2024"
columns={[
{
label: "Download",
href: "#",
items: [
{
label: "Download", href: "#"},
{
label: "Community", href: "#"},
{
label: "Support", href: "#"},
],
},
{
label: "Community",
href: "#",
items: [
{
label: "Terms of Service", href: "#"},
{
label: "Privacy Policy", href: "#"},
],
},
{
label: "Support",
href: "#",
},
],
},
{
items: [
{
label: "Terms of Service",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);