Merge version_1_1781893659085 into main #1

Merged
bender merged 2 commits from version_1_1781893659085 into main 2026-06-19 18:28:59 +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": "Guides",
"href": "#guides"
"name": "Guides", "href": "#guides"
},
{
"name": "Projects",
"href": "#projects"
"name": "Projects", "href": "#projects"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="CrochetBuddy"
logoImageSrc="http://img.b2bpic.net/free-photo/letter-made-from-gray-threads-isolated-top-view_169016-50643.jpg"
ctaButton={{
text: "Get Started",
href: "#pricing",
}}
text: "Get Started", href: "#pricing"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,42 +50,28 @@ export default function Layout() {
brand="CrochetBuddy"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Guides",
href: "#guides",
},
label: "Guides", href: "#guides"},
{
label: "Projects",
href: "#projects",
},
label: "Projects", href: "#projects"},
],
},
]}
copyright="© 2024 CrochetBuddy. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>