From ea165f00a257271744f0b1f6291d9e6174a927bd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 10:04:39 +0000 Subject: [PATCH] Switch to version 1: remove src/pages/HomePage/sections/About.tsx --- src/pages/HomePage/sections/About.tsx | 73 --------------------------- 1 file changed, 73 deletions(-) delete mode 100644 src/pages/HomePage/sections/About.tsx diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx deleted file mode 100644 index 2f477aa..0000000 --- a/src/pages/HomePage/sections/About.tsx +++ /dev/null @@ -1,73 +0,0 @@ -import React, { useState, useEffect } from 'react'; -import { Wheat, Heart, Truck } from "lucide-react"; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import Tag from "@/components/ui/Tag"; -import ImageOrVideo from "@/components/ui/ImageOrVideo"; - -export default function AboutSection(): React.JSX.Element { - const [timeLeft, setTimeLeft] = useState(300); - - useEffect(() => { - if (timeLeft <= 0) return; - const timerId = setInterval(() => { - setTimeLeft(prev => prev - 1); - }, 1000); - return () => clearInterval(timerId); - }, [timeLeft]); - - const minutes = Math.floor(timeLeft / 60); - const seconds = timeLeft % 60; - - return ( -
- -
-
-
- -
-
-
-
-
- -
-

Premium Ingredients

-

Sourced locally and globally for the finest quality and flavor.

-
-
-
- -
-

Handcrafted with Love

-

Each item is carefully prepared by our skilled bakers.

-
-
-
- -
-

Convenient Delivery

-

Freshness brought directly to your home or office.

-
-
-
-
- -
- Discount Ends In - - {String(minutes).padStart(2, '0')}:{String(seconds).padStart(2, '0')} - -
-
-
-
-
-
-
-
- ); -}