Merge version_1_1781824808478 into main #1

Merged
bender merged 2 commits from version_1_1781824808478 into main 2026-06-18 23:21:29 +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": "Portfolio",
"href": "#portfolio"
"name": "Portfolio", "href": "#portfolio"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
}
];
@@ -42,67 +35,49 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Studio"
ctaButton={{
text: "Hire Me",
href: "#contact",
}}
navItems={navItems} />
logo="Studio"
logoImageSrc="http://img.b2bpic.net/free-vector/retro-vintage-text-effect-editable-70s-80s-text-style_314614-4112.jpg"
ctaButton={{
text: "Hire Me", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Studio"
columns={[
{
title: "Navigation",
items: [
brand="Studio"
columns={[
{
label: "About",
href: "#about",
title: "Navigation", items: [
{
label: "About", href: "#about"},
{
label: "Portfolio", href: "#portfolio"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "Portfolio",
href: "#portfolio",
title: "Connect", items: [
{
label: "Instagram", href: "#"},
{
label: "Twitter", href: "#"},
{
label: "LinkedIn", href: "#"},
],
},
]}
copyright="© 2024 Studio. All rights reserved."
links={[
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Connect",
items: [
label: "Privacy Policy", href: "#"},
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{
label: "LinkedIn",
href: "#",
},
],
},
]}
copyright="© 2024 Studio. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);