diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx new file mode 100644 index 0000000..f40c9b6 --- /dev/null +++ b/src/pages/Index.tsx @@ -0,0 +1,198 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { + ArrowRight, Eye, UtensilsCrossed, Star, Wine, Quote +} from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const highlights = [ + { name: "Wagyu Beef Tenderloin", desc: "A5 wagyu, bone marrow butter, roasted root vegetables, red wine jus", price: "$62", gradient: "from-amber-800/30 to-stone-700/30" }, + { name: "Seared Scallops", desc: "Pan-seared diver scallops, cauliflower purée, truffle vinaigrette", price: "$24", gradient: "from-stone-700/30 to-amber-900/30" }, + { name: "Valrhona Chocolate Fondant", desc: "Warm dark chocolate cake, vanilla bean ice cream, gold leaf", price: "$16", gradient: "from-amber-900/30 to-stone-800/30" }, +]; + +const testimonials = [ + { name: "James & Katherine", text: "An extraordinary dining experience. Every dish was a masterpiece. The tasting menu was the highlight of our trip.", source: "Google Reviews" }, + { name: "Sophie Laurent", text: "Impeccable service and the most beautiful presentation I have ever seen. The wine pairing was exquisite.", source: "TripAdvisor" }, + { name: "Michael Chen", text: "Worth every penny. The wagyu was the best I have had outside of Japan. Already planning our return visit.", source: "Yelp" }, +]; + +export default function IndexPage() { + return ( +
+
+ + {/* ── HERO ── */} +
+
+
+
+
+
+
+
+
+
+ +
+ + Est. 1987 + +

A Culinary Journey Through Timeless Flavors

+

Experience refined dining where heritage meets innovation. Every dish tells a story crafted with passion, precision, and the finest seasonal ingredients.

+
+ + +
+
+
+ + {/* ── SIGNATURE DISHES ���─ */} +
+
+
+
+ +
+

Signature Dishes

+

Chef's selection of our most celebrated creations

+
+
+ {highlights.map((d, i) => ( +
+ {i === 0 && Chef's Pick} +
+
+
+
+

{d.name}

+

{d.desc}

+ {d.price} +
+ ))} +
+
+ +
+
+
+ + {/* ── ABOUT PREVIEW ── */} +
+
+
+
+
+ +
+

Our Story

+

For over three decades, Aurum has been a sanctuary for those who appreciate the art of fine dining. Founded by Chef Marcus Bellini, our kitchen is guided by one philosophy: let exceptional ingredients speak for themselves.

+
+
+
35+
+
Years
+
+
+
2
+
Michelin Stars
+
+
+
400+
+
Wines
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+ + {/* ── GALLERY ── */} +
+
+
+

Gallery

+

A glimpse into the Aurum experience

+
+
+ {[0, 1, 2, 3, 4, 5].map((i) => ( +
+
+
+
+
+ {i+1}/6 +
+ +
+
+ ))} +
+
+
+ + {/* ── TESTIMONIALS ── */} +
+
+
+

What Our Guests Say

+
+
+ {testimonials.map((t, i) => ( + + +
+ {[...Array(5)].map((_, j) => ( + + ))} +
+ +

"{t.text}"

+
+
{t.name}
+
{t.source}
+
+
+
+ ))} +
+
+
+ + {/* ── RESERVATION CTA ── */} +
+
+
+ +
+

Join Us for an Unforgettable Evening

+

Reserve your table and experience the art of fine dining

+ +
+
+ +
+ ); +} \ No newline at end of file