import React from "react"; import { Input } from "@/components/ui/input"; import { Button } from "@/components/ui/button"; export default function LuxuryMagazine() { return (
{/* Header */}
Luxora
{/* Hero Section */}

Experience the World of Luxury

Discover curated stories on travel, style, wealth, and elegance.

{/* Article Categories Preview */}
{[ { title: "Exotic Cars", image: "https://images.unsplash.com/photo-1511914265871-b6a5d4f31634" }, { title: "High Fashion", image: "https://images.unsplash.com/photo-1618375531917-aec9283b6b62" }, { title: "Luxury Travel", image: "https://images.unsplash.com/photo-1506744038136-46273834b3fb" }, { title: "Real Estate", image: "https://images.unsplash.com/photo-1600585154356-596af9009e4a" }, { title: "Premium Watches", image: "https://images.unsplash.com/photo-1532635223-6cb6362f2c04" }, { title: "Fine Jewelry", image: "https://images.unsplash.com/photo-1522312346375-d1a52e2b99b3" } ].map((cat, idx) => (
{cat.title}

{cat.title}

Explore the latest in {cat.title.toLowerCase()} and trends curated by our editors.

))}
); }