Merge version_1_1782644735979 into main #1

Merged
bender merged 2 commits from version_1_1782644735979 into main 2026-06-28 11:06:37 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Benefits",
"href": "#benefits"
"name": "Benefits", "href": "#benefits"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Suncoast"
logoImageSrc="http://img.b2bpic.net/free-vector/geometrical-logos-abstract-style_23-2147507548.jpg"
ctaButton={{
text: "Join Now",
href: "#contact",
}}
text: "Join Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,63 +49,40 @@ export default function Layout() {
brand="Suncoast Credit Union"
columns={[
{
title: "Products",
items: [
title: "Products", items: [
{
label: "Savings",
href: "#",
},
label: "Savings", href: "#"},
{
label: "Loans",
href: "#",
},
label: "Loans", href: "#"},
{
label: "Business",
href: "#",
},
label: "Business", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "#",
},
label: "FAQ", href: "#"},
{
label: "Contact",
href: "#",
},
label: "Contact", href: "#"},
{
label: "About Us",
href: "#",
},
label: "About Us", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Use",
href: "#",
},
label: "Terms of Use", href: "#"},
],
},
]}
copyright="© 2024 Suncoast Credit Union. All rights reserved. Federally insured by NCUA."
links={[
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>