5 Commits

Author SHA1 Message Date
4484689f32 Merge version_6_1782128709285 into main
Merge version_6_1782128709285 into main
2026-06-22 11:49:52 +00:00
kudinDmitriyUp
dd7b7c5d00 Bob AI: Removed background patterns to blend text and background pic 2026-06-22 11:49:05 +00:00
0c914ca51e Merge version_5_1782128361429 into main
Merge version_5_1782128361429 into main
2026-06-22 11:40:47 +00:00
kudinDmitriyUp
0e384e98f6 Bob AI: Apply the 5 uploaded images to every second section starting from the first (her 2026-06-22 11:40:44 +00:00
41c95d4055 Merge version_4_1782128066783 into main
Merge version_4_1782128066783 into main
2026-06-22 11:36:27 +00:00
2 changed files with 22 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ export default function Layout() {
}, []);
return (
<StyleProvider buttonVariant="default" siteBackground="gridDots" heroBackground="gradientBars">
<StyleProvider buttonVariant="default" siteBackground="none" heroBackground="none">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<div className="fixed top-6 left-1/2 -translate-x-1/2 z-50 hidden md:flex items-center gap-2 p-1.5 card rounded-full shadow-lg">

View File

@@ -14,18 +14,35 @@ import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
import PricingSection from './HomePage/sections/Pricing';export default function HomePage(): React.JSX.Element {
import PricingSection from './HomePage/sections/Pricing';
const SectionBg = ({ children, src }: { children: React.ReactNode, src: string }) => (
<div className="relative bg-cover bg-center" style={{ backgroundImage: `url('${src}')` }}>
<div className="absolute inset-0 bg-background/80"></div>
<div className="relative z-10 [&>section]:!bg-transparent [&>div]:!bg-transparent">
{children}
</div>
</div>
);
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<SectionBg src="https://storage.googleapis.com/webild/users/user_3FUQa0ZWeM3nmyILoJWMMWG8CWg/uploaded-1782128289234-2l64vswo.jpg">
<HeroSection />
</SectionBg>
<AboutSection />
<FeaturesSection />
<SectionBg src="https://storage.googleapis.com/webild/users/user_3FUQa0ZWeM3nmyILoJWMMWG8CWg/uploaded-1782128289235-iu181g1w.jpg">
<FeaturesSection />
</SectionBg>
<ProductSection />
<MetricsSection />
<SectionBg src="https://storage.googleapis.com/webild/users/user_3FUQa0ZWeM3nmyILoJWMMWG8CWg/uploaded-1782128289235-56h4behn.jpg">
<MetricsSection />
</SectionBg>
<PricingSection />
<TestimonialsSection />