Merge version_1_1781475376612 into main #1

Merged
bender merged 2 commits from version_1_1781475376612 into main 2026-06-14 22:17:21 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Books",
"href": "#products"
"name": "Books", "href": "#products"
},
{
"name": "Stationery",
"href": "#products"
"name": "Stationery", "href": "#products"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Support",
"href": "#faq"
"name": "Support", "href": "#faq"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Narayandas Hemandas"
logoImageSrc="http://img.b2bpic.net/free-photo/numerology-concept-with-book_23-2150063031.jpg"
ctaButton={{
text: "Shop Now",
href: "#products",
}}
text: "Shop Now", href: "#products"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,42 +50,28 @@ export default function Layout() {
brand="Narayandas Hemandas"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
],
},
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "Books",
href: "#products",
},
label: "Books", href: "#products"},
{
label: "Stationery",
href: "#products",
},
label: "Stationery", href: "#products"},
],
},
]}
copyright="© 2024 Narayandas Hemandas. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>