From f6ea27779cfdaebdf1f9b1417ebba1aae2faf49a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 17:23:11 +0000 Subject: [PATCH] Bob AI: Update color scheme to purple and add services to hero and a --- src/index.css | 6 +- src/pages/HomePage.tsx | 128 ++++------------------- src/pages/HomePage/sections/About.tsx | 16 +++ src/pages/HomePage/sections/Contact.tsx | 19 ++++ src/pages/HomePage/sections/Hero.tsx | 20 ++++ src/pages/HomePage/sections/Outcomes.tsx | 23 ++++ src/pages/HomePage/sections/Pricing.tsx | 31 ++++++ src/pages/HomePage/sections/Security.tsx | 35 +++++++ src/pages/HomePage/sections/Team.tsx | 22 ++++ 9 files changed, 192 insertions(+), 108 deletions(-) create mode 100644 src/pages/HomePage/sections/About.tsx create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Outcomes.tsx create mode 100644 src/pages/HomePage/sections/Pricing.tsx create mode 100644 src/pages/HomePage/sections/Security.tsx create mode 100644 src/pages/HomePage/sections/Team.tsx diff --git a/src/index.css b/src/index.css index c86cd29..b04b38c 100644 --- a/src/index.css +++ b/src/index.css @@ -7,12 +7,12 @@ --background: #0a0a0a; --card: #1a1a1a; --foreground: #eeeded; - --primary-cta: #00FFAB; - --primary-cta-text: #000000; + --primary-cta: #9d4edd; + --primary-cta-text: #ffffff; --secondary-cta: #1a1a1a; --secondary-cta-text: #ffffffe6; --accent: #737373; - --background-accent: #00d5c7; + --background-accent: #7b2cbf; /* Border Radius - Pill */ --radius: 2rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 250222a..6b6f957 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,119 +1,37 @@ +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; -import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; -import AboutText from "@/components/sections/about/AboutText"; -import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; -import TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import { LayoutGrid, TrendingUp, Target, Palette, BarChart, Users, Megaphone, Search } from "lucide-react"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import SecuritySection from './HomePage/sections/Security'; +import OutcomesSection from './HomePage/sections/Outcomes'; +import PricingSection from './HomePage/sections/Pricing'; +import TeamSection from './HomePage/sections/Team'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - + -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
); -} \ No newline at end of file +} diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..1f98c7c --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,16 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "about" section. + +import React from 'react'; +import AboutText from "@/components/sections/about/AboutText"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..989638a --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,19 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "contact" section. + +import React from 'react'; +import ContactCenter from "@/components/sections/contact/ContactCenter"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..228a00e --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,20 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Outcomes.tsx b/src/pages/HomePage/sections/Outcomes.tsx new file mode 100644 index 0000000..27b40fa --- /dev/null +++ b/src/pages/HomePage/sections/Outcomes.tsx @@ -0,0 +1,23 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "outcomes" section. + +import React from 'react'; +import FeaturesBorderGlow from "@/components/sections/features/FeaturesBorderGlow"; +import { LayoutGrid, TrendingUp, Target, Palette, BarChart, Users, Megaphone, Search } from "lucide-react"; + +export default function OutcomesSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..c884cef --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,31 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "pricing" section. + +import React from 'react'; +import PricingLayeredCards from "@/components/sections/pricing/PricingLayeredCards"; + +export default function PricingSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Security.tsx b/src/pages/HomePage/sections/Security.tsx new file mode 100644 index 0000000..df8a61c --- /dev/null +++ b/src/pages/HomePage/sections/Security.tsx @@ -0,0 +1,35 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "security" section. + +import React from 'react'; +import FeaturesBento from "@/components/sections/features/FeaturesBento"; +import { LayoutGrid, TrendingUp, Target, Palette, BarChart, Users, Megaphone, Search } from "lucide-react"; + +export default function SecuritySection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx new file mode 100644 index 0000000..ae19727 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "team" section. + +import React from 'react'; +import TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; + +export default function TeamSection(): React.JSX.Element { + return ( +
+ +
+ ); +}