Merge version_1_1782169622765 into main #1

Merged
bender merged 2 commits from version_1_1782169622765 into main 2026-06-22 23:08:05 +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": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Demo",
"href": "#demo"
"name": "Demo", "href": "#demo"
}
];
@@ -42,59 +35,45 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ClipMind"
ctaButton={{
text: "Start Free Trial",
href: "#cta",
}}
navItems={navItems} />
logo="ClipMind"
logoImageSrc="http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104980.jpg"
ctaButton={{
text: "Start Free Trial", href: "#cta"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="ClipMind"
columns={[
{
title: "Product",
items: [
brand="ClipMind"
columns={[
{
label: "Features",
href: "#",
title: "Product", items: [
{
label: "Features", href: "#"},
{
label: "Pricing", href: "#"},
],
},
{
label: "Pricing",
href: "#",
title: "Resources", items: [
{
label: "Blog", href: "#"},
{
label: "API", href: "#"},
],
},
],
},
{
title: "Resources",
items: [
]}
copyright="© 2024 ClipMind. All rights reserved."
links={[
{
label: "Blog",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "API",
href: "#",
},
],
},
]}
copyright="© 2024 ClipMind. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);