Merge version_1_1782101284586 into main #1

Merged
bender merged 2 commits from version_1_1782101284586 into main 2026-06-22 04:09:13 +00:00

View File

@@ -7,98 +7,75 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#features"
},
{
"name": "Portal",
"href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{
"name": "Home", "href": "#hero"
},
{
"name": "About", "href": "#about"
},
{
"name": "Services", "href": "#features"
},
{
"name": "Portal", "href": "#contact"
},
{
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq", "href": "#faq"
}
];
return (
<StyleProvider buttonVariant="elastic" siteBackground="noiseGradient" heroBackground="radialGradient">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Rx Med Care"
ctaButton={{
text: "Contact Us",
href: "#contact",
}}
navItems={navItems} />
logo="Rx Med Care"
logoImageSrc="http://img.b2bpic.net/free-vector/plus-health-circles-outline-glyph-flat_78370-4786.jpg"
ctaButton={{
text: "Contact Us", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Rx Med Care"
columns={[
{
title: "Company",
items: [
brand="Rx Med Care"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Services", href: "#features"},
{
label: "Contact", href: "#contact"},
],
},
{
label: "Services",
href: "#features",
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 Rx Med Care. All rights reserved."
links={[
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Legal",
items: [
label: "Privacy", href: "#"},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Rx Med Care. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
/>
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);