Merge version_1_1781957203472 into main #1

Merged
bender merged 2 commits from version_1_1781957203472 into main 2026-06-20 12:07:55 +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": "Architecture",
"href": "#about"
"name": "Architecture", "href": "#about"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ChordPlatform"
logoImageSrc="http://img.b2bpic.net/free-photo/evolution-recording-format_23-2147781429.jpg"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
text: "Get Started", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,37 +48,23 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "Architecture",
href: "#about",
},
label: "Architecture", href: "#about"},
{
label: "Legal",
href: "#",
},
label: "Legal", href: "#"},
{
label: "Security",
href: "#",
},
label: "Security", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}