From 37edddfc2faac93ee33acb4949bfdba2c4150191 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 14:31:21 +0000 Subject: [PATCH 1/6] Bob AI: Update global fonts to Bebas Neue and Inter --- src/index.css | 4 +- src/pages/HomePage.tsx | 269 ++---------------- src/pages/HomePage/sections/Contact.tsx | 27 ++ src/pages/HomePage/sections/Hero.tsx | 36 +++ src/pages/HomePage/sections/Lab.tsx | 34 +++ src/pages/HomePage/sections/Manifesto.tsx | 39 +++ src/pages/HomePage/sections/ManifestoText.tsx | 35 +++ src/pages/HomePage/sections/Mascote.tsx | 42 +++ src/pages/HomePage/sections/Process.tsx | 52 ++++ src/pages/HomePage/sections/Projects.tsx | 57 ++++ 10 files changed, 348 insertions(+), 247 deletions(-) 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/Lab.tsx create mode 100644 src/pages/HomePage/sections/Manifesto.tsx create mode 100644 src/pages/HomePage/sections/ManifestoText.tsx create mode 100644 src/pages/HomePage/sections/Mascote.tsx create mode 100644 src/pages/HomePage/sections/Process.tsx create mode 100644 src/pages/HomePage/sections/Projects.tsx diff --git a/src/index.css b/src/index.css index 2505382..a152a8c 100644 --- a/src/index.css +++ b/src/index.css @@ -88,8 +88,8 @@ --color-background-accent: var(--background-accent); /* Fonts */ - --font-sans: 'Montserrat', sans-serif; - --font-tight: "Inter Tight", sans-serif; + --font-sans: 'Bebas Neue', sans-serif; + --font-tight: "Inter", sans-serif; --font-mono: monospace; /* Border Radius */ diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index bccb0c3..b36d96b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,257 +1,36 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; -import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; -import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; -import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; -import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; -import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; -import { MessageSquare, Search, ShoppingBag } from "lucide-react"; -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 ManifestoSection from './HomePage/sections/Manifesto'; +import ProcessSection from './HomePage/sections/Process'; +import ProjectsSection from './HomePage/sections/Projects'; +import LabSection from './HomePage/sections/Lab'; +import ManifestoTextSection from './HomePage/sections/ManifestoText'; +import MascoteSection from './HomePage/sections/Mascote'; +import ContactSection from './HomePage/sections/Contact'; + +export default function HomePage(): 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..bc6d5e0 --- /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/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..f78b0dd --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,36 @@ +// 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 HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Lab.tsx b/src/pages/HomePage/sections/Lab.tsx new file mode 100644 index 0000000..16cd259 --- /dev/null +++ b/src/pages/HomePage/sections/Lab.tsx @@ -0,0 +1,34 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "lab" section. + +import React from 'react'; +import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function LabSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Manifesto.tsx b/src/pages/HomePage/sections/Manifesto.tsx new file mode 100644 index 0000000..5ec425c --- /dev/null +++ b/src/pages/HomePage/sections/Manifesto.tsx @@ -0,0 +1,39 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "manifesto" section. + +import React from 'react'; +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import { MessageSquare, Search, ShoppingBag } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ManifestoSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/ManifestoText.tsx b/src/pages/HomePage/sections/ManifestoText.tsx new file mode 100644 index 0000000..2631591 --- /dev/null +++ b/src/pages/HomePage/sections/ManifestoText.tsx @@ -0,0 +1,35 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "manifesto-text" section. + +import React from 'react'; +import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ManifestoTextSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Mascote.tsx b/src/pages/HomePage/sections/Mascote.tsx new file mode 100644 index 0000000..4326776 --- /dev/null +++ b/src/pages/HomePage/sections/Mascote.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "mascote" section. + +import React from 'react'; +import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function MascoteSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Process.tsx b/src/pages/HomePage/sections/Process.tsx new file mode 100644 index 0000000..0ae0e65 --- /dev/null +++ b/src/pages/HomePage/sections/Process.tsx @@ -0,0 +1,52 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "process" section. + +import React from 'react'; +import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ProcessSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Projects.tsx b/src/pages/HomePage/sections/Projects.tsx new file mode 100644 index 0000000..5009305 --- /dev/null +++ b/src/pages/HomePage/sections/Projects.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "projects" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ProjectsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} From 4510355b9e8329ebf39eb05e4caa2fddfb1d1f6f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 14:31:29 +0000 Subject: [PATCH 2/6] Bob AI: Update font imports to Bebas Neue and Inter --- src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index a152a8c..f5df57a 100644 --- a/src/index.css +++ b/src/index.css @@ -1,4 +1,4 @@ -@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap'); @import "tailwindcss"; @import "./styles/masks.css"; @import "./styles/animations.css"; From 087eba525ef308ab864362b7121a6c75e9ad5b06 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 14:31:54 +0000 Subject: [PATCH 3/6] Bob AI: Clean up navigation links in Layout --- src/components/Layout.tsx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b9baeae..aef7e8b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -22,18 +22,6 @@ export default function Layout() { { "name": "CONTATO", "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Manifesto", - "href": "#manifesto" - }, - { - "name": "Manifesto Text", - "href": "#manifesto-text" } ]; From 96f9b8015baffca0a731c5b492c551ea2d00e13a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 14:32:03 +0000 Subject: [PATCH 4/6] Bob AI: Set site background to noise for investigative feel --- src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index aef7e8b..b2c483b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -26,7 +26,7 @@ export default function Layout() { ]; return ( - + Date: Sun, 14 Jun 2026 14:33:46 +0000 Subject: [PATCH 5/6] Bob AI: Update hero section with laboratory aesthetic and mascot --- src/pages/HomePage/sections/Hero.tsx | 124 ++++++++++++++++++++------- 1 file changed, 94 insertions(+), 30 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index f78b0dd..51acdef 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,36 +1,100 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; -import React from 'react'; -import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "ENTRAR NO LAB", + href: "#lab" +}; +const secondaryButton = { + href: "#projects", + text: "VER PROJETOS" +}; -export default function HeroSection(): React.JSX.Element { +type HeroOverlayProps = { + tag: string; + title: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; + avatarsSrc?: string[]; + avatarsLabel?: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -
- - - +
+ + + +
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); } From 8bc77b6c0e1b887c3e77ec294b9d551c8eb6a051 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 14 Jun 2026 14:36:26 +0000 Subject: [PATCH 6/6] Bob AI: Update process section with custom laboratory aesthetic --- src/pages/HomePage/sections/Process.tsx | 126 +++++++++++++++--------- 1 file changed, 81 insertions(+), 45 deletions(-) diff --git a/src/pages/HomePage/sections/Process.tsx b/src/pages/HomePage/sections/Process.tsx index 0ae0e65..8aa96c7 100644 --- a/src/pages/HomePage/sections/Process.tsx +++ b/src/pages/HomePage/sections/Process.tsx @@ -1,52 +1,88 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "process" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import Button from "@/components/ui/Button"; +import { cls } from "@/lib/utils"; + +type FeatureItem = { + title: string; + description: string; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +interface FeaturesBentoGridProps { + tag: string; + title: string; + description: string; + features: [FeatureItem, FeatureItem, FeatureItem, FeatureItem]; + primaryButton?: { text: string; href: string }; + secondaryButton?: { text: string; href: string }; +} -import React from 'react'; import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -export default function ProcessSection(): React.JSX.Element { +const ProcessInline = () => { return ( -
- - - +
+
+ +
+
+ +

+ COMO TRABALHAMOS +

+
+
+ +
+
+ + {[ + { num: "01", title: "ANÁLISE", desc: "Investigamos sua marca." }, + { num: "02", title: "DIAGNÓSTICO", desc: "Identificamos gargalos." }, + { num: "03", title: "POSICIONAMENTO", desc: "Definimos direção." }, + { num: "04", title: "EXECUÇÃO", desc: "Transformamos estratégia em presença visual." } + ].map((step, i) => ( + +
+
+
+ {step.num} +
+ +
+
+ +{i+1} +
+ +

{step.title}

+

{step.desc}

+ +
+
+
+ Fase {step.num} concluída +
+
+
+
+
+ ))} +
+
+ ); +}; + +export default function ProcessSection() { + return ( +
+
+ +
+ +
); }