Merge version_1_1781616552945 into main #1

Merged
bender merged 2 commits from version_1_1781616552945 into main 2026-06-16 13:30:26 +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": "Product",
"href": "#product"
"name": "Product", "href": "#product"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,49 +35,40 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="MERN Social"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
navItems={navItems} />
logo="MERN Social"
logoImageSrc="http://img.b2bpic.net/free-photo/linkedin-logo-3d-gradient-effect_23-2152009933.jpg"
ctaButton={{
text: "Get Started", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Platform",
items: [
columns={[
{
label: "Features",
href: "#features",
title: "Platform", items: [
{
label: "Features", href: "#features"},
{
label: "Pricing", href: "#pricing"},
],
},
{
label: "Pricing",
href: "#pricing",
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Contact", href: "#contact"},
],
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
leftText="© 2024 MERN Social. All rights reserved."
rightText="Designed with React."
/>
]
}
leftText="© 2024 MERN Social. All rights reserved."
rightText="Designed with React."
/>
</SectionErrorBoundary>
</StyleProvider>
);