Merge version_1_1781414091750 into main #1

Merged
bender merged 2 commits from version_1_1781414091750 into main 2026-06-14 05:15:59 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Portfolio",
"href": "#portfolio"
"name": "Portfolio", "href": "#portfolio"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,60 +35,46 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="CraftMaster"
ctaButton={{
text: "Get a Quote",
href: "#contact",
}}
navItems={navItems} />
logo="CraftMaster"
logoImageSrc="http://img.b2bpic.net/free-psd/carpenter-business-card-template-design_23-2151924220.jpg"
ctaButton={{
text: "Get a Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="CraftMaster"
columns={[
{
title: "Links",
items: [
brand="CraftMaster"
columns={[
{
label: "About",
href: "#about",
title: "Links", items: [
{
label: "About", href: "#about"},
{
label: "Portfolio", href: "#portfolio"},
],
},
{
label: "Portfolio",
href: "#portfolio",
title: "Services", items: [
{
label: "Kitchens", href: "#services"},
{
label: "Furniture", href: "#services"},
],
},
],
},
{
title: "Services",
items: [
]}
copyright="© 2024 Master Craftsman Solutions. All rights reserved."
links={[
{
label: "Kitchens",
href: "#services",
},
label: "Privacy", href: "#"},
{
label: "Furniture",
href: "#services",
},
],
},
]}
copyright="© 2024 Master Craftsman Solutions. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-psd/carpenter-business-card-template-design_23-2151924220.jpg"
/>
label: "Terms", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-psd/carpenter-business-card-template-design_23-2151924220.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);