From 1470659e8b2259579ea1c84ba530429f7794b6aa Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 13 Jun 2026 20:47:29 +0000 Subject: [PATCH] Bob AI: change color theme to green --- src/index.css | 16 +-- src/pages/HomePage.tsx | 172 +++----------------------- src/pages/HomePage/sections/About.tsx | 2 +- src/pages/HomePage/sections/Faq.tsx | 2 +- src/pages/HomePage/sections/Hero.tsx | 3 +- 5 files changed, 30 insertions(+), 165 deletions(-) diff --git a/src/index.css b/src/index.css index 0584f85..b9f776a 100644 --- a/src/index.css +++ b/src/index.css @@ -5,15 +5,15 @@ :root { /* @colorThemes/lightTheme/neutral */ - --background: #ffffff; - --card: #f5f5f5; - --foreground: #171717; - --primary-cta: #171717; + --background: #f0fdf4; + --card: #dcfce7; + --foreground: #14532d; + --primary-cta: #16a34a; --primary-cta-text: #ffffff; - --secondary-cta: #f5f5f5; - --secondary-cta-text: #171717; - --accent: #171717; - --background-accent: #171717; + --secondary-cta: #bbf7d0; + --secondary-cta-text: #14532d; + --accent: #16a34a; + --background-accent: #16a34a; /* @layout/border-radius/rounded */ --radius: 1rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 28c35a4..b714c33 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,16 +1,22 @@ +// 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 { motion } from "motion/react"; import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import HeroWorkScrollStack from "@/components/sections/hero/HeroWorkScrollStack"; -import AboutTestimonialParallax from "@/components/sections/about/AboutTestimonialParallax"; -import FeaturesBentoGridCta from "@/components/sections/features/FeaturesBentoGridCta"; -import FaqTabbedAccordion from "@/components/sections/faq/FaqTabbedAccordion"; -import ContactSplitFormParallax from "@/components/sections/contact/ContactSplitFormParallax"; import LoaderReveal from "@/components/ui/LoaderReveal"; import CornerGlowBackground from "@/components/ui/CornerGlowBackground"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import TestimonialSection from './HomePage/sections/Testimonial'; +import AboutSection from './HomePage/sections/About'; +import ServicesSection from './HomePage/sections/Services'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( - + - + -
- -
+ -
- -
+ - + -
- -
+
diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index d04b60f..afd5cbe 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -12,7 +12,7 @@ export default function AboutSection(): React.JSX.Element { quote="I don't design to decorate — I design to solve. Sharp, intentional work that moves brands forward." author="Joseph Alexander" role="Independent Designer" - imageSrc="https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp" + imageSrc="https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp?_wi=2" socialLinks={[ { icon: "Twitter", label: "Twitter", href: "#" }, { icon: "Linkedin", label: "LinkedIn", href: "#" }, diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx index f443e8b..a1fb02d 100644 --- a/src/pages/HomePage/sections/Faq.tsx +++ b/src/pages/HomePage/sections/Faq.tsx @@ -50,7 +50,7 @@ export default function FaqSection(): React.JSX.Element { }, ]} cta={{ - imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp", + imageSrc: "https://storage.googleapis.com/webild/default/templates/creative-portfolio/avatar.webp?_wi=3", name: "More questions? Reach out anytime.", role: "joseph@alexandercreative.com", buttonText: "Book a call", diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 3dd7398..1178357 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -3,14 +3,13 @@ import React from 'react'; import HeroWorkScrollStack from "@/components/sections/hero/HeroWorkScrollStack"; -import RatingStars from "@/components/ui/RatingStars"; export default function HeroSection(): React.JSX.Element { return (
5.0 Rating
as any} + tag="1 spot left this month" title="Design that" titleHighlight="commands attention." description="Design engineered for performance, not just aesthetics." -- 2.49.1