From 8b5fef203c9069d2f10613bd3e1b912a1760d668 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 21:43:42 +0000 Subject: [PATCH] Bob AI: Updated typography scale to large for maximalistic aesthetic --- src/index.css | 30 +- src/pages/HomePage.tsx | 292 ++------------------ src/pages/HomePage/sections/About.tsx | 25 ++ src/pages/HomePage/sections/Bento.tsx | 57 ++++ src/pages/HomePage/sections/Contact.tsx | 27 ++ src/pages/HomePage/sections/Faq.tsx | 38 +++ src/pages/HomePage/sections/Features.tsx | 46 +++ src/pages/HomePage/sections/Hero.tsx | 45 +++ src/pages/HomePage/sections/Pricing.tsx | 65 +++++ src/pages/HomePage/sections/Testimonial.tsx | 42 +++ 10 files changed, 384 insertions(+), 283 deletions(-) create mode 100644 src/pages/HomePage/sections/About.tsx create mode 100644 src/pages/HomePage/sections/Bento.tsx create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/Faq.tsx create mode 100644 src/pages/HomePage/sections/Features.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Pricing.tsx create mode 100644 src/pages/HomePage/sections/Testimonial.tsx diff --git a/src/index.css b/src/index.css index a0f10c0..711cdc0 100644 --- a/src/index.css +++ b/src/index.css @@ -32,21 +32,21 @@ --width-carousel-item-3: calc(var(--width-content-width) / 3 - var(--vw-1_5) / 3 * 2); --width-carousel-item-4: calc(var(--width-content-width) / 4 - var(--vw-1_5) / 4 * 3); - /* @typography/text-sizing/medium */ - --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); - --text-xs: clamp(0.54rem, 0.72vw, 0.72rem); - --text-sm: clamp(0.615rem, 0.82vw, 0.82rem); - --text-base: clamp(0.69rem, 0.92vw, 0.92rem); - --text-lg: clamp(0.75rem, 1vw, 1rem); - --text-xl: clamp(0.825rem, 1.1vw, 1.1rem); - --text-2xl: clamp(0.975rem, 1.3vw, 1.3rem); - --text-3xl: clamp(1.2rem, 1.6vw, 1.6rem); - --text-4xl: clamp(1.5rem, 2vw, 2rem); - --text-5xl: clamp(2.025rem, 2.75vw, 2.75rem); - --text-6xl: clamp(2.475rem, 3.3vw, 3.3rem); - --text-7xl: clamp(3rem, 4vw, 4rem); - --text-8xl: clamp(3.5rem, 4.5vw, 4.5rem); - --text-9xl: clamp(5.25rem, 7vw, 7rem); + /* @typography/text-sizing/large */ + --text-2xs: clamp(0.5rem, 0.7vw, 0.7rem); + --text-xs: clamp(0.6rem, 0.8vw, 0.8rem); + --text-sm: clamp(0.7rem, 0.9vw, 0.9rem); + --text-base: clamp(0.8rem, 1.1vw, 1.1rem); + --text-lg: clamp(0.9rem, 1.3vw, 1.3rem); + --text-xl: clamp(1.1rem, 1.5vw, 1.5rem); + --text-2xl: clamp(1.3rem, 1.8vw, 1.8rem); + --text-3xl: clamp(1.6rem, 2.2vw, 2.2rem); + --text-4xl: clamp(2rem, 2.8vw, 2.8rem); + --text-5xl: clamp(2.6rem, 3.8vw, 3.8rem); + --text-6xl: clamp(3.2rem, 4.6vw, 4.6rem); + --text-7xl: clamp(4rem, 5.8vw, 5.8rem); + --text-8xl: clamp(5rem, 7.2vw, 7.2rem); + --text-9xl: clamp(7rem, 10vw, 10rem); } /* @typography/text-sizing/medium (mobile) */ diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 2f5195c..a30f719 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,280 +1,36 @@ -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; -import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards'; -import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; -import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards'; -import PricingHighlightedCards from '@/components/sections/pricing/PricingHighlightedCards'; -import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +// 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. -export default function HomePage() { +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import FeaturesSection from './HomePage/sections/Features'; +import BentoSection from './HomePage/sections/Bento'; +import PricingSection from './HomePage/sections/Pricing'; +import TestimonialSection from './HomePage/sections/Testimonial'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; + +export default function HomePage(): React.JSX.Element { return ( - <> -
- - - -
+<> + -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ ); } diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..d427667 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,25 @@ +// 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 AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Bento.tsx b/src/pages/HomePage/sections/Bento.tsx new file mode 100644 index 0000000..b7dbfcc --- /dev/null +++ b/src/pages/HomePage/sections/Bento.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "bento" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function BentoSection(): 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..723cff2 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,27 @@ +// 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 ContactCta from '@/components/sections/contact/ContactCta'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..67c852d --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,38 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Features.tsx b/src/pages/HomePage/sections/Features.tsx new file mode 100644 index 0000000..b21b85a --- /dev/null +++ b/src/pages/HomePage/sections/Features.tsx @@ -0,0 +1,46 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "features" section. + +import React from 'react'; +import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function FeaturesSection(): 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..dc15d32 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,45 @@ +// 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 HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): 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..44837c6 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,65 @@ +// 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 PricingHighlightedCards from '@/components/sections/pricing/PricingHighlightedCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function PricingSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonial.tsx b/src/pages/HomePage/sections/Testimonial.tsx new file mode 100644 index 0000000..a353bcb --- /dev/null +++ b/src/pages/HomePage/sections/Testimonial.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonial" section. + +import React from 'react'; +import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function TestimonialSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} -- 2.49.1