diff --git a/components/info.tsx b/components/info.tsx new file mode 100644 index 0000000..96b131b --- /dev/null +++ b/components/info.tsx @@ -0,0 +1,58 @@ +"use client"; + +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { MapPin, Clock, Phone, Mail } from "lucide-react"; + +export function Info() { + return ( +
+ +
+ {/* Location */} +
+
+
+ +
+
+

Location

+

123 Avenue des Champs-Élysées

+

75008 Paris, France

+
+ + {/* Hours */} +
+
+
+ +
+
+

Opening Hours

+
+

Mon - Thu: 18:00 - 23:00

+

Fri - Sat: 17:00 - 00:00

+

Sunday: Closed

+
+
+ + {/* Contact */} +
+
+
+ +
+
+

Contact

+

+ +33 1 23 45 67 89 +

+

+ reservations@lumiere.com +

+
+
+
+
+ ); +}