Merge version_1_1782164225381 into main #1

Merged
bender merged 2 commits from version_1_1782164225381 into main 2026-06-22 21:38:15 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Bento",
"href": "#bento"
"name": "Bento", "href": "#bento"
},
{
"name": "Testimonial",
"href": "#testimonial"
"name": "Testimonial", "href": "#testimonial"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="DevSync"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=ze4mpm"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
text: "Get Started", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,63 +50,40 @@ export default function Layout() {
brand="DevSync"
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "Infrastructure",
href: "#",
},
label: "Infrastructure", href: "#"},
{
label: "Security",
href: "#",
},
label: "Security", href: "#"},
{
label: "Integrations",
href: "#",
},
label: "Integrations", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
],
},
]}
copyright="© 2024 DevSync Platform Inc."
links={[
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "GitHub",
href: "#",
},
label: "GitHub", href: "#"},
]}
/>
</SectionErrorBoundary>