Merge version_1_1781778131389 into main #1

Merged
bender merged 2 commits from version_1_1781778131389 into main 2026-06-18 10:23:19 +00:00

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": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Gallery",
"href": "#gallery"
"name": "Gallery", "href": "#gallery"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -42,62 +35,47 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Milmo Salon"
ctaButton={{
text: "Book Appointment",
href: "tel:795980526",
}}
navItems={navItems} />
logo="Milmo Salon"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=dxui8c"
ctaButton={{
text: "Book Appointment", href: "tel:795980526"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Milmo Salon",
items: [
columns={[
{
label: "Żary, Pl. Rynek 8/9",
href: "#",
title: "Milmo Salon", items: [
{
label: "Żary, Pl. Rynek 8/9", href: "#"},
{
label: "Tel: 795 980 526", href: "tel:795980526"},
],
},
{
label: "Tel: 795 980 526",
href: "tel:795980526",
},
],
},
{
title: "Godziny Otwarcia",
items: [
{
label: "Pon-Pt: 9:00 - 18:00",
href: "#",
title: "Godziny Otwarcia", items: [
{
label: "Pon-Pt: 9:00 - 18:00", href: "#"},
{
label: "Sob: 9:00 - 14:00", href: "#"},
],
},
{
label: "Sob: 9:00 - 14:00",
href: "#",
title: "Usługi", items: [
{
label: "Stylizacja Rzęs", href: "#services"},
{
label: "Laminacja Brwi", href: "#services"},
],
},
],
},
{
title: "Usługi",
items: [
{
label: "Stylizacja Rzęs",
href: "#services",
},
{
label: "Laminacja Brwi",
href: "#services",
},
],
},
]}
leftText="© 2024 Milmo Salon. Wszelkie prawa zastrzeżone."
rightText="Stworzone z pasją."
/>
]}
leftText="© 2024 Milmo Salon. Wszelkie prawa zastrzeżone."
rightText="Stworzone z pasją."
/>
</SectionErrorBoundary>
</StyleProvider>
);