From 92f2531cf613e53480d0dcebf0838b3c11039768 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:47:38 +0000 Subject: [PATCH] Deploy --- .../sections/ReservationCTASection.tsx | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/components/sections/ReservationCTASection.tsx diff --git a/src/components/sections/ReservationCTASection.tsx b/src/components/sections/ReservationCTASection.tsx new file mode 100644 index 0000000..ea0dc56 --- /dev/null +++ b/src/components/sections/ReservationCTASection.tsx @@ -0,0 +1,47 @@ +'use client' + +import Button from '@/components/ui/Button' + +export default function ReservationCTASection() { + return ( +
+ {/* Video background */} + + + {/* Overlay */} +
+ + {/* Content */} +
+

Join the Table

+

+ Reserve a seat for an unforgettable evening or order takeout to enjoy Pino's at home. +

+ +

+ Or call us at (312) 555-1234 for immediate reservations. +

+
+
+ ) +}