Merge version_1_1781395013456 into main #1

Merged
bender merged 2 commits from version_1_1781395013456 into main 2026-06-13 23:58:02 +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": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"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": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarInline
logo="ELAMIN LEGAL"
ctaButton={{
text: "Contact Us",
href: "#contact",
}}
text: "Contact Us", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,37 +48,26 @@ export default function Layout() {
brand="ELAMIN LEGAL"
columns={[
{
title: "Consultancy",
items: [
title: "Consultancy", items: [
{
label: "Corporate Services",
href: "#services",
},
label: "Corporate Services", href: "#services"},
{
label: "Legal Advice",
href: "#services",
},
label: "Legal Advice", href: "#services"},
{
label: "Compliance",
href: "#services",
},
label: "Compliance", href: "#services"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 ELAMIN LEGAL. All rights reserved."
links={[]}
/>
</SectionErrorBoundary>
</StyleProvider>