From ca80d1ae0e0d168967228bbaaec3b88d2039ed42 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 19:02:06 +0000 Subject: [PATCH] Switch to version 2: added src/pages/HomePage/sections/About.tsx --- src/pages/HomePage/sections/About.tsx | 66 +++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/pages/HomePage/sections/About.tsx diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..e239202 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,66 @@ +import React from 'react'; +import { Wheat, Droplet, Flame } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import Button from "@/components/ui/Button"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import Tag from "@/components/ui/Tag"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ +
+
+ +
+ +
+
+
+
+
+ +
+
+

Artisan Dough

+

Hand-kneaded daily for the perfect crust.

+
+
+ +
+
+ +
+
+

Fresh Ingredients

+

Locally sourced vegetables and premium meats.

+
+
+ +
+
+ +
+
+

Brick Oven Baked

+

For that irresistible smoky flavor and crispy finish.

+
+
+
+
+ +
+ +
+
+
+
+
+ ); +}