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.

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