Merge version_1_1781527555347 into main

Merge version_1_1781527555347 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-15 12:47:03 +00:00

View File

@@ -7,105 +7,57 @@ 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": "Contact",
"href": "#contact"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Social Proof",
"href": "#social-proof"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Home", href: "#hero" },
{ name: "About", href: "#about" },
{ name: "Services", href: "#features" },
{ name: "Contact", href: "#contact" },
{ name: "Products", href: "#products" },
{ name: "Social Proof", href: "#social-proof" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="floatingGradient" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ROMEJIA SRL"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="ROMEJIA SRL"
logoImageSrc="http://img.b2bpic.net/free-photo/golden-lightning-bolt-icon-glowing-textured-brown-background_84443-91489.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="ROMEJIA SRL"
columns={[
{
items: [
brand="ROMEJIA SRL"
columns={[
{
label: "About Us",
href: "#about",
items: [
{ label: "About Us", href: "#about" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" }
],
},
{
label: "Careers",
href: "#",
items: [
{ label: "Services", href: "#features" },
{ label: "Tracking", href: "#" },
{ label: "Support", href: "#" }
],
},
{
label: "Blog",
href: "#",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Contact", href: "#contact" }
],
},
],
},
{
items: [
{
label: "Services",
href: "#features",
},
{
label: "Tracking",
href: "#",
},
{
label: "Support",
href: "#",
},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);