Merge version_1_1782307925588 into main #1

Merged
bender merged 1 commits from version_1_1782307925588 into main 2026-06-24 13:33:12 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Головна",
"href": "#hero"
"name": "Головна", "href": "#hero"
},
{
"name": "Про нас",
"href": "#about"
"name": "Про нас", "href": "#about"
},
{
"name": "Послуги",
"href": "#features"
"name": "Послуги", "href": "#features"
},
{
"name": "Контакти",
"href": "#contact"
"name": "Контакти", "href": "#contact"
},
{
"name": "Product",
"href": "#product"
"name": "Product", "href": "#product"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -42,56 +35,43 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Дваеблана .нет"
ctaButton={{
text: "Замовити",
href: "#contact",
}}
navItems={navItems} />
logo="Дваеблана .нет"
logoImageSrc="http://img.b2bpic.net/free-photo/cheerful-people-with-hybrid-car_53876-165505.jpg"
ctaButton={{
text: "Замовити", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="ТОВ Дваеблана .нет"
columns={[
{
title: "Компанія",
items: [
brand="ТОВ Дваеблана .нет"
columns={[
{
label: "Про нас",
href: "#about",
title: "Компанія", items: [
{
label: "Про нас", href: "#about"},
{
label: "Послуги", href: "#features"},
],
},
{
label: ослуги",
href: "#features",
title: ідтримка", items: [
{
label: "Контакти", href: "#contact"},
{
label: "FAQ", href: "#"},
],
},
],
},
{
title: "Підтримка",
items: [
]}
copyright="© 2024 ТОВ Дваеблана .нет. Усі права захищені."
links={[
{
label: "Контакти",
href: "#contact",
},
{
label: "FAQ",
href: "#",
},
],
},
]}
copyright="© 2024 ТОВ Дваеблана .нет. Усі права захищені."
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/cheerful-people-with-hybrid-car_53876-165505.jpg"
/>
label: "Privacy Policy", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-photo/cheerful-people-with-hybrid-car_53876-165505.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);