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. +

+
+
+ ) +}