Bob AI: fix build errors (attempt 1)
This commit is contained in:
@@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user