import { SocialPost, PublicMixerEvent } from '../types';

export const SOCIAL_POSTS: SocialPost[] = [
  {
    id: "post-1",
    username: "victoria_wanderlust",
    handle: "@victoria_hk",
    avatar: "https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=200&q=80",
    image: "/images/yacht/bowloungeclose.jpg",
    caption: "Golden hour aboard @entourage.hk ✨ Chilled champagne in custom stemware, turquoise banquettes, and the skyline in view. The highest standard of chartering in Hong Kong. 🛥️🥂 #EntourageHK #YachtLifeHK",
    likes: 924,
    commentsCount: 52,
    location: "Victoria Harbour, Central",
    timestamp: "2 hours ago",
    tags: ["#EntourageHK", "#LuxuryYacht", "#HongKongHarbour", "#ChampagneCruise"],
    charterType: "Sunset & Victoria Harbour Lights"
  },
  {
    id: "post-2",
    username: "marcus_executive",
    handle: "@marcus.chen",
    avatar: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=200&q=80",
    image: "/images/yacht/saloonmarblebar.jpg",
    caption: "The illuminated marble bar inside @entourage.hk is exceptional. 5-star mixology inside the air-conditioned saloon while cruising past the IFC. 🍾🍸 #EntourageHK #CorporateHospitality",
    likes: 742,
    commentsCount: 38,
    location: "Main Saloon, Entourage",
    timestamp: "Yesterday",
    tags: ["#EntourageHK", "#MarbleBar", "#ExecutiveYacht", "#HongKong"],
    charterType: "Private Executive Charter"
  },
  {
    id: "post-3",
    username: "celine.voyages",
    handle: "@celine_travels",
    avatar: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=200&q=80",
    image: "/images/yacht/aftdiningtable.jpg",
    caption: "The 10-seater solid teak dining table on the aft deck set for lunch with ice buckets and fresh seafood. Pure serenity in Repulse Bay. 🌊🍴 #EntourageHK #AlfrescoDining",
    likes: 1150,
    commentsCount: 67,
    location: "Repulse Bay, Southside",
    timestamp: "3 days ago",
    tags: ["#EntourageHK", "#TeakDining", "#SouthsideHK", "#PrivateChef"],
    charterType: "The Ultimate Day Odyssey"
  },
  {
    id: "post-4",
    username: "adrian_sound",
    handle: "@adrian.beats",
    avatar: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=200&q=80",
    image: "/images/yacht/flybridgelounge.jpg",
    caption: "Flybridge sky lounge under the navy blue canopy. Playing sunset melodic house over the Pioneer multi-zone system as we anchor in Sai Kung. 🎧☀️ #EntourageHK",
    likes: 889,
    commentsCount: 44,
    location: "Millionaire's Beach, Sai Kung",
    timestamp: "4 days ago",
    tags: ["#EntourageHK", "#Flybridge", "#SunsetBeats", "#SaiKung"],
    charterType: "Sai Kung Island Hopper"
  }
];

export const PUBLIC_MIXER_EVENTS: PublicMixerEvent[] = [
  {
    id: "mixer-1",
    title: "Sunday Sunset Rosé & Melodic Lounge",
    theme: "Chic Coastal Elegance & Sunset Soundscape",
    date: "This Sunday, Sept 20",
    time: "4:00 PM – 8:30 PM",
    departure: "Central Pier 9",
    pricePerTicketHKD: 1180,
    totalSpots: 40,
    bookedSpots: 34,
    djLineup: "Curated Sunset Melodic & Deep Lounge",
    includes: [
      "4.5-Hour Sunset & Twilight Harbour Cruise",
      "Free-flow Whispering Angel Rosé, French Champagne & Craft G&Ts",
      "Artisan charcuterie, aged cheeses & canapés",
      "Pioneer multi-zone sound across all 3 decks"
    ],
    image: "/images/yacht/bowskyline.jpg",
    badge: "ONLY 6 SPOTS LEFT"
  },
  {
    id: "mixer-2",
    title: "Executive & Private Wealth Harbour Mixer",
    theme: "High-Caliber Networking & Symphony of Lights",
    date: "Thursday, Sept 24",
    time: "6:30 PM – 10:30 PM",
    departure: "Central Pier 10",
    pricePerTicketHKD: 1380,
    totalSpots: 35,
    bookedSpots: 28,
    djLineup: "Live Acoustic Saxophone & Ambient Jazz",
    includes: [
      "4-Hour Victoria Harbour Cruise front-row for Symphony of Lights",
      "Premium illuminated marble bar service (Single Malts & Cocktails)",
      "Wagyu beef canapés & fresh seafood bites",
      "Access to climate-controlled saloon & outdoor foredeck"
    ],
    image: "/images/yacht/saloonmarblebar.jpg",
    badge: "FILLING FAST"
  },
  {
    id: "mixer-3",
    title: "Sai Kung Secluded Bay & Ocean Pool Escape",
    theme: "Daytime Swimming, Floating Sea Pool & Teak BBQ",
    date: "Saturday, Oct 3",
    time: "10:30 AM – 5:30 PM",
    departure: "Sai Kung Public Pier",
    pricePerTicketHKD: 1250,
    totalSpots: 42,
    bookedSpots: 22,
    djLineup: "Tropical House & Summer Groove",
    includes: [
      "7-Hour full-day island cove charter",
      "Live aft-deck Surf & Turf BBQ with ribeye & tiger prawns",
      "Floating jellyfish-safe sea pool & paddleboards",
      "Unlimited chilled wines, craft beers & spritzers"
    ],
    image: "/images/yacht/aerialdeepocean.jpg",
    badge: "EARLY BIRD"
  }
];

export const STORY_REELS = [
  {
    id: "story-1",
    user: "Victoria Harbour Dusk",
    avatar: "/images/yacht/bowskyline.jpg",
    previewImage: "/images/yacht/bowskyline.jpg",
    active: true,
    caption: "Twilight cruising past Central Pier with chilled champagne."
  },
  {
    id: "story-2",
    user: "Flybridge Sky Deck",
    avatar: "/images/yacht/flybridgelounge.jpg",
    previewImage: "/images/yacht/flybridgelounge.jpg",
    active: true,
    caption: "Under the navy blue canopy on the upper flybridge sunbeds."
  },
  {
    id: "story-3",
    user: "Saloon Marble Bar",
    avatar: "/images/yacht/saloonmarblebar.jpg",
    previewImage: "/images/yacht/saloonmarblebar.jpg",
    active: true,
    caption: "Illuminated marble bar & climate-controlled saloon luxury."
  },
  {
    id: "story-4",
    user: "Teak Dining Deck",
    avatar: "/images/yacht/aftdiningtable.jpg",
    previewImage: "/images/yacht/aftdiningtable.jpg",
    active: true,
    caption: "10-seater solid teak table set with champagne and stemware."
  },
  {
    id: "story-5",
    user: "Foredeck Lounge",
    avatar: "/images/yacht/bowloungeclose.jpg",
    previewImage: "/images/yacht/bowloungeclose.jpg",
    active: false,
    caption: "Signature turquoise cushions and fluted teak cocktail tables."
  }
];
