Update src/components/Layout.tsx

This commit is contained in:
2026-06-14 16:43:50 +00:00
parent 4fac354cf9
commit c7b6270dcb

View File

@@ -8,67 +8,41 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
}
];
{ name: "About", href: "#about" },
{ name: "Services", href: "#services" },
{ name: "Products", href: "#products" },
{ name: "Contact", href: "#contact" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonials", href: "#testimonials" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="gridDots" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Societe Erriadh"
logoImageSrc="https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=100&h=100&fit=crop"
ctaButton={{
text: "Get in touch",
href: "#contact",
}}
navItems={navItems} />
logo="Societe Erriadh"
logoImageSrc="http://img.b2bpic.net/free-vector/modern-geometric-monogram-logo-branding_125964-4542.jpg"
ctaButton={{
text: "Get in touch", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Societe Erriadh"
copyright="© 2024 Societe Erriadh. All rights reserved."
socialLinks={[
{
icon: Linkedin,
href: "#",
},
{
icon: Twitter,
href: "#",
},
]}
/>
brand="Societe Erriadh"
copyright="© 2024 Societe Erriadh. All rights reserved."
socialLinks={[
{
icon: "Linkedin", href: "#"},
{
icon: "Twitter", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);