Bob AI: fix build errors (attempt 1)

This commit is contained in:
kudinDmitriyUp
2026-06-14 12:15:57 +00:00
parent ba51557793
commit b9c3dd48ee

View File

@@ -3,42 +3,23 @@
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
import { ThemeProvider } from "@/components/providers/themeProvider/ThemeProvider";
import React from 'react';
import NavSection from './HomePage/sections/Nav';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import StatsSection from './HomePage/sections/Stats';
import FaqSection from './HomePage/sections/Faq';
import FooterSection from './HomePage/sections/Footer';
import MenuSection from './HomePage/sections/Menu';
import MenuSection from './HomePage/sections/Menu';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<ThemeProvider
defaultButtonVariant="gradient"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<>
<NavSection />
<HeroSection />
<AboutSection />
<MenuSection />
<StatsSection />
<FaqSection />
<FooterSection />
</ThemeProvider>
</>
);
}
}