Merge version_1_1782251329165 into main #1

Merged
bender merged 1 commits from version_1_1782251329165 into main 2026-06-23 21:49:37 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "THE BLUEPRINT",
"href": "#blueprint"
"name": "THE BLUEPRINT", "href": "#blueprint"
},
{
"name": "THE HOUSE",
"href": "#house"
"name": "THE HOUSE", "href": "#house"
},
{
"name": "THE MATH",
"href": "#math"
"name": "THE MATH", "href": "#math"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Simple to Scale"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=pxa0z6"
ctaButton={{
text: "Commission yours",
href: "#cta",
}}
text: "Commission yours", href: "#cta"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,20 +48,13 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "The Blueprint",
href: "#blueprint",
},
label: "The Blueprint", href: "#blueprint"},
{
label: "The House",
href: "#house",
},
label: "The House", href: "#house"},
{
label: "The Math",
href: "#math",
},
label: "The Math", href: "#math"},
],
},
]}