From 6b4583b71fa71069d76b25331d145307081e5a5d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 03:12:38 +0000 Subject: [PATCH 1/5] Bob AI: Update global colors to match Bird Shack brand --- src/index.css | 18 +- src/pages/HomePage.tsx | 220 ++----------------- src/pages/HomePage/sections/About.tsx | 22 ++ src/pages/HomePage/sections/Contact.tsx | 27 +++ src/pages/HomePage/sections/Faq.tsx | 39 ++++ src/pages/HomePage/sections/Hero.tsx | 42 ++++ src/pages/HomePage/sections/Menu.tsx | 64 ++++++ src/pages/HomePage/sections/Proof.tsx | 29 +++ src/pages/HomePage/sections/Testimonials.tsx | 42 ++++ 9 files changed, 296 insertions(+), 207 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/Faq.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Menu.tsx create mode 100644 src/pages/HomePage/sections/Proof.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/index.css b/src/index.css index 03d2efc..b915f3f 100644 --- a/src/index.css +++ b/src/index.css @@ -5,15 +5,15 @@ :root { /* @colorThemes/lightTheme/grayNavyBlue */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; - --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; - --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --background: #ffffff; + --card: #ffffff; + --foreground: #000000; + --primary-cta: #f3d822; + --primary-cta-text: #000000; + --secondary-cta: #58a5c0; + --secondary-cta-text: #ffffff; + --accent: #e65430; + --background-accent: #f3d822; /* @layout/border-radius/rounded */ --radius: 0.5rem; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index f484eca..2e78845 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,209 +1,33 @@ -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; -import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; -import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; -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 MenuSection from './HomePage/sections/Menu'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import ProofSection from './HomePage/sections/Proof'; +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..1f49b39 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,22 @@ +// 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 AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +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..e8198a7 --- /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..cf7b5f5 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,39 @@ +// 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 FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function FaqSection(): 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..5292974 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,42 @@ +// 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 HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Menu.tsx b/src/pages/HomePage/sections/Menu.tsx new file mode 100644 index 0000000..3f74c56 --- /dev/null +++ b/src/pages/HomePage/sections/Menu.tsx @@ -0,0 +1,64 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "menu" section. + +import React from 'react'; +import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function MenuSection(): React.JSX.Element { + return ( + + ); +} diff --git a/src/pages/HomePage/sections/Proof.tsx b/src/pages/HomePage/sections/Proof.tsx new file mode 100644 index 0000000..35bd204 --- /dev/null +++ b/src/pages/HomePage/sections/Proof.tsx @@ -0,0 +1,29 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "proof" section. + +import React from 'react'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ProofSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..f227e35 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonials" section. + +import React from 'react'; +import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} -- 2.49.1 From ec3352366a358c4a043ad2160f52d2570ffc9975 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 03:13:14 +0000 Subject: [PATCH 2/5] Bob AI: Update layout with Bird Shack navigation and footer links --- src/components/Layout.tsx | 69 +++++++++++++++------------------------ 1 file changed, 27 insertions(+), 42 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 82e4ee5..d57cae9 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,70 +38,55 @@ export default function Layout() { ]; return ( - + + navItems={[ + { name: "HOME", href: "#hero" }, + { name: "MENU", href: "#menu" }, + { name: "FIND A SHACK", href: "#" }, + { name: "REWARDS", href: "#" }, + { name: "WHO WE ARE", href: "#about" }, + { name: "CONTACT US", href: "#contact" } + ]} />
-- 2.49.1 From 50d878b46ebea5d02e628a914b32bde5be01204c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 03:15:21 +0000 Subject: [PATCH 3/5] Bob AI: Update hero section with Bird Shack branding and image --- src/pages/HomePage/sections/Hero.tsx | 121 +++++++++++++++++++-------- 1 file changed, 85 insertions(+), 36 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 5292974..5891793 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,42 +1,91 @@ -// 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 HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const avatarsSrc = []; +const primaryButton = { + text: "ORDER ONLINE", + href: "#menu" +}; +const secondaryButton = { + text: "Visit Us", + href: "#contact" +}; +const names = [ + "ORIGINAL CRISPY", + "CAJUN SPICY", + "BARBEQUE" +]; -export default function HeroSection(): React.JSX.Element { +type HeroCenteredLogosProps = { + avatarsSrc: string[]; + avatarText: string; + title: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; + names: string[]; + hideMedia?: boolean; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -
- - - +
+ + {!false && ( +
+ +
+
+ )} + +
+
+ + + + + + +
+
+
+ +
+
+ {[...names, ...names, ...names, ...names].map((name, index) => ( +
+ {name} +
+ ))} +
+
+
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); } -- 2.49.1 From c97f51107566f2bd18495ace03af25d3493b2ef2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 03:16:19 +0000 Subject: [PATCH 4/5] Bob AI: Update menu section with Bird Shack categories and top picks --- src/pages/HomePage/sections/Menu.tsx | 53 +++------------------------- 1 file changed, 5 insertions(+), 48 deletions(-) diff --git a/src/pages/HomePage/sections/Menu.tsx b/src/pages/HomePage/sections/Menu.tsx index 3f74c56..279e7c8 100644 --- a/src/pages/HomePage/sections/Menu.tsx +++ b/src/pages/HomePage/sections/Menu.tsx @@ -10,54 +10,11 @@ export default function MenuSection(): React.JSX.Element { ); -- 2.49.1 From 38f6c3dd40ffda106d4063875ae9519caa3cbf04 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 03:17:17 +0000 Subject: [PATCH 5/5] Bob AI: fix build errors (attempt 1) --- src/pages/HomePage/sections/Menu.tsx | 47 ++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/src/pages/HomePage/sections/Menu.tsx b/src/pages/HomePage/sections/Menu.tsx index 279e7c8..414078c 100644 --- a/src/pages/HomePage/sections/Menu.tsx +++ b/src/pages/HomePage/sections/Menu.tsx @@ -13,9 +13,52 @@ export default function MenuSection(): React.JSX.Element { tag="SOME TOP PICKS JUST FOR YOU!" title=" " description="SHOP BY CATEGORY" - items={[{"title":"STARTA BOX","imageSrc":"https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png","href":"#","description":"1 PIECE COMBO\\n1 PIECE OF CHICKEN\\nFRIES OR 3 WEDGES\\nCORNBREAD\\n16 oz SODA"},{"href":"#","description":"1 CHICKEN SANDWICH\\n1 PIECE OF CHICKEN OR 3 WINGS\\nFRIES OR 3 WEDGES\\n1 COLESLAW\\n16 oz SODA","title":"FLEX BOX COMBO","imageSrc":"https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png"},{"title":"HATRIK","imageSrc":"https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png","href":"#","description":"3 PIECES OF CHICKEN\\nFRIES OR 3 WEDGES\\nCORNBREAD\\n16 oz SODA"},{"href":"#","description":"1 CHICKEN SANDWICH\\nFRIES OR 3 WEDGES\\n16 oz SODA","title":"CHICKEN SANDWICH COMBO","imageSrc":"https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png"}]} + items={[ + { + "title": "STARTA BOX", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png", + "href": "#", + "description": "1 PIECE COMBO\n1 PIECE OF CHICKEN\nFRIES OR 3 WEDGES\nCORNBREAD\n16 oz SODA" + }, + { + "href": "#", + "description": "1 CHICKEN SANDWICH\n1 PIECE OF CHICKEN OR 3 WINGS\nFRIES OR 3 WEDGES\n1 COLESLAW\n16 oz SODA", + "title": "FLEX BOX COMBO", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png" + }, + { + "title": "HATRIK", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png", + "href": "#", + "description": "3 PIECES OF CHICKEN\nFRIES OR 3 WEDGES\nCORNBREAD\n16 oz SODA" + }, + { + "href": "#", + "description": "1 CHICKEN SANDWICH\nFRIES OR 3 WEDGES\n16 oz SODA", + "title": "CHICKEN SANDWICH COMBO", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png" + }, + { + "title": "WINGS COMBO", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png", + "href": "#", + "description": "6 PIECES WINGS\nFRIES OR 3 WEDGES\n16 oz SODA" + }, + { + "title": "FAMILY MEAL", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png", + "href": "#", + "description": "8 PIECES OF CHICKEN\nLARGE FRIES\n2 COLESLAW\n4 CORNBREAD" + }, + { + "title": "KIDS MEAL", + "imageSrc": "https://storage.googleapis.com/webild/users/user_3FWHaCApdMsPkrjRayRKhrZvcTp/uploaded-1782184302347-y72utape.png", + "href": "#", + "description": "1 PIECE OF CHICKEN\nSMALL FRIES\nAPPLE JUICE" + } + ]} />
); -} +} \ No newline at end of file -- 2.49.1