From 4179bf07aee36e64d0b1ac4bc0aedf01a50b7512 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 19:34:03 +0000 Subject: [PATCH] Bob AI: Added floating gradient background for antigravity aesthetic --- src/pages/HomePage.tsx | 4 ++- .../sections/AntigravityBackground.tsx | 10 ++++++ src/pages/HomePage/sections/Hero.tsx | 31 ++++++++----------- 3 files changed, 26 insertions(+), 19 deletions(-) create mode 100644 src/pages/HomePage/sections/AntigravityBackground.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 1622106..f26ed21 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -13,7 +13,8 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import PricingSection from './HomePage/sections/Pricing'; import FaqSection from './HomePage/sections/Faq'; -const Galaxy = ({ glowIntensity = 0.5 }: any) => ( + +import AntigravityBackgroundSection from './HomePage/sections/AntigravityBackground';const Galaxy = ({ glowIntensity = 0.5 }: any) => (
@@ -39,6 +40,7 @@ export default function HomePage(): React.JSX.Element { +
+ +
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 2d69bfe..e688376 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,25 +1,20 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +// Created by add_section_from_catalog (HeroBillboardFloatingCards). import React from 'react'; -import HeroBillboardCreator from "@/components/sections/hero/HeroBillboardCreator"; +import HeroBillboardFloatingCards from '@/components/sections/hero/HeroBillboardFloatingCards'; export default function HeroSection(): React.JSX.Element { return ( -
- -
+
+ +
); }