From 262548092ed3edc8d9039e149f6c60c369f3b020 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:38:59 +0000 Subject: [PATCH] Deploy --- src/components/sections/HeroSection.tsx | 40 +++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/components/sections/HeroSection.tsx diff --git a/src/components/sections/HeroSection.tsx b/src/components/sections/HeroSection.tsx new file mode 100644 index 0000000..12c552e --- /dev/null +++ b/src/components/sections/HeroSection.tsx @@ -0,0 +1,40 @@ +import Image from "next/image" +import Link from "next/link" + +export default function HeroSection() { + const imageUrl = "https://images.pexels.com/photos/3184191/pexels-photo-3184191.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" + const headline = "Pino's Italian Restaurant" + const subtitle = "A family-owned downtown Chicago Italian restaurant serving authentic wood-fired pizzas, fresh pasta, and traditional." + + return ( +
+ + {imageUrl ? ( +
+ +
+ ) : ( +
+ )} +
+
+

Authentic Cuisine

+

{headline}

+

{subtitle}

+ + View Our Menu + +
+
+ ) +}