Update src/components/Layout.tsx

This commit is contained in:
2026-06-14 06:42:14 +00:00
parent 77094c9a06
commit 9ed4b60be9

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Products",
"href": "#products"
"name": "Products", "href": "#products"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -42,64 +35,47 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Nellai Supermarket"
logoImageSrc="https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=100&h=100"
ctaButton={{
text: "Call Now",
href: "tel:+919600148138",
}}
navItems={navItems} />
logo="Nellai Supermarket"
logoImageSrc="http://img.b2bpic.net/free-photo/healthy-food-organic-fresh-farmer-products_53876-64953.jpg"
ctaButton={{
text: "Call Now", href: "tel:+919600148138"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Nellai Supermarket"
columns={[
{
title: "Company",
items: [
brand="Nellai Supermarket"
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{
label: "About Us", href: "#about"},
{
label: "Products", href: "#products"},
{
label: "Testimonials", href: "#testimonials"},
],
},
{
label: "Products",
href: "#products",
title: "Support", items: [
{
label: "FAQ", href: "#faq"},
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 Nellai Supermarket. All rights reserved."
links={[
{
label: "Testimonials",
href: "#testimonials",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "#faq",
},
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Nellai Supermarket. All rights reserved."
links={[
{
label: "Contact Us",
href: "tel:+919600148138",
},
]}
/>
label: "Contact Us", href: "tel:+919600148138"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);