Merge version_1_1781410707138 into main

Merge version_1_1781410707138 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-14 04:19:38 +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": "Projects",
"href": "#projects"
"name": "Projects", "href": "#projects"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Comparison",
"href": "#comparison"
"name": "Comparison", "href": "#comparison"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="JG Elite"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=12estm"
ctaButton={{
text: "Inquire",
href: "#contact",
}}
text: "Inquire", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,33 +48,21 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{
label: "Projects",
href: "#projects",
},
label: "Projects", href: "#projects"},
{
label: "Our Approach",
href: "#about",
},
label: "Our Approach", href: "#about"},
{
label: "Inquire",
href: "#contact",
},
label: "Inquire", href: "#contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Use",
href: "#",
},
label: "Terms of Use", href: "#"},
],
},
]}