Bob AI: fix build errors (attempt 1)

This commit is contained in:
kudinDmitriyUp
2026-05-05 08:59:59 +00:00
parent fd802b27bb
commit e768ef22af

View File

@@ -1,8 +1,5 @@
import { Outlet } from "react-router-dom";
import StyleProvider from "../providers/StyleProvider";
import SiteBackgroundSlot from "../slots/SiteBackgroundSlot";
import NavbarCentered from "./ui/NavbarCentered";
import FooterSimpleMedia from "./ui/FooterSimpleMedia";
export default function Layout() {
const navItems = [
@@ -37,8 +34,7 @@ export default function Layout() {
];
return (
<StyleProvider buttonVariant="bubble" siteBackground="gridLines" heroBackground="horizonGlow">
<SiteBackgroundSlot />
<>
<NavbarCentered
logo="My Honey"
ctaButton={{
@@ -50,50 +46,6 @@ export default function Layout() {
<main className="flex-grow">
<Outlet />
</main>
<div className="text-red-500">
<FooterSimpleMedia
brand="My Honey"
columns={[
{
title: "Explore",
items: [
{
label: "Story",
href: "#about",
},
{
label: "Blog",
href: "#blog",
},
],
},
{
title: "Connect",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Instagram",
href: "#",
},
],
},
]}
copyright="© 2024 My Honey. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
}
]}
/>
</div>
</StyleProvider>
</>
);
}