Merge version_1_1782221128662 into main #1

Merged
bender merged 1 commits from version_1_1782221128662 into main 2026-06-23 13:26:26 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Work",
"href": "#work"
"name": "Work", "href": "#work"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Manifesto",
"href": "#manifesto"
"name": "Manifesto", "href": "#manifesto"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Project Dune"
logoImageSrc="http://img.b2bpic.net/free-psd/graduation-celebration-landing-page-template_23-2150339502.jpg"
ctaButton={{
text: "Book a call",
href: "#contact",
}}
text: "Book a call", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,50 +49,32 @@ export default function Layout() {
brand="Project Dune"
columns={[
{
title: "Agency",
items: [
title: "Agency", items: [
{
label: "Work",
href: "#work",
},
label: "Work", href: "#work"},
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Services",
href: "#services",
},
label: "Services", href: "#services"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Email",
href: "mailto:hello@projectdune.com",
},
label: "Email", href: "mailto:hello@projectdune.com"},
{
label: "LinkedIn",
href: "#",
},
label: "LinkedIn", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
],
},
]}
copyright="© 2024 Project Dune Creative. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Book a call",
href: "#contact",
},
label: "Book a call", href: "#contact"},
]}
/>
</SectionErrorBoundary>