From 8826f83bf28a074d46bf14f9a51df723da62e843 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 2 Jul 2026 16:01:44 +0000 Subject: [PATCH] Bob AI: Removed FAQ section to show only reels --- src/pages/FishingReelsPage.tsx | 35 +++++++------------ .../FishingReelsPage/sections/HeroSplit.tsx | 15 ++++++++ .../sections/ProductRatingCards.tsx | 11 ++++++ 3 files changed, 39 insertions(+), 22 deletions(-) create mode 100644 src/pages/FishingReelsPage/sections/HeroSplit.tsx create mode 100644 src/pages/FishingReelsPage/sections/ProductRatingCards.tsx diff --git a/src/pages/FishingReelsPage.tsx b/src/pages/FishingReelsPage.tsx index 2879350..85178ba 100644 --- a/src/pages/FishingReelsPage.tsx +++ b/src/pages/FishingReelsPage.tsx @@ -1,27 +1,18 @@ -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 ScrollReveal from "@/components/ui/ScrollReveal"; -import { Star, Loader2 } from "lucide-react"; -import { cls } from "@/lib/utils"; -import GridOrCarousel from "@/components/ui/GridOrCarousel"; -import useProducts from "@/hooks/useProducts"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in the sibling sections/ folder (one file per section). +// Edit those section files directly. Non-block content (wrappers, +// non-inlinable sections) is preserved inline; extracted section blocks +// become component refs. -export default function FishingReelsPage() { +import React from 'react'; +import HeroSplitSection from './FishingReelsPage/sections/HeroSplit'; +import ProductRatingCardsSection from './FishingReelsPage/sections/ProductRatingCards'; + +export default function FishingReelsPage(): React.JSX.Element { return ( - <> -

Premium Fishing Reels

-
-
+<> + + ); } diff --git a/src/pages/FishingReelsPage/sections/HeroSplit.tsx b/src/pages/FishingReelsPage/sections/HeroSplit.tsx new file mode 100644 index 0000000..9ebc738 --- /dev/null +++ b/src/pages/FishingReelsPage/sections/HeroSplit.tsx @@ -0,0 +1,15 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "HeroSplit" section. + +import React from 'react'; +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 ScrollReveal from "@/components/ui/ScrollReveal"; + +export default function HeroSplitSection(): React.JSX.Element { + return ( +

Premium Fishing Reels

+ ); +} diff --git a/src/pages/FishingReelsPage/sections/ProductRatingCards.tsx b/src/pages/FishingReelsPage/sections/ProductRatingCards.tsx new file mode 100644 index 0000000..2555971 --- /dev/null +++ b/src/pages/FishingReelsPage/sections/ProductRatingCards.tsx @@ -0,0 +1,11 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "ProductRatingCards" section. + +import React from 'react'; +import { Star, Loader2 } from "lucide-react"; + +export default function ProductRatingCardsSection(): React.JSX.Element { + return ( +
+ ); +} -- 2.49.1