This commit is contained in:
Iliyan Angelov
2025-11-20 21:06:30 +02:00
parent 44e11520c5
commit a38ab4fa82
77 changed files with 7169 additions and 360 deletions

View File

@@ -0,0 +1,65 @@
// Seed data for luxury hotel content
export const luxuryContentSeed = {
home: {
luxury_section_title: 'Experience Unparalleled Luxury',
luxury_section_subtitle: 'Where elegance meets comfort in every detail',
luxury_section_image: '',
luxury_features: [
{
icon: 'Sparkles',
title: 'Premium Amenities',
description: 'World-class facilities designed for your comfort and relaxation'
},
{
icon: 'Crown',
title: 'Royal Service',
description: 'Dedicated concierge service available 24/7 for all your needs'
},
{
icon: 'Award',
title: 'Award-Winning',
description: 'Recognized for excellence in hospitality and guest satisfaction'
},
{
icon: 'Shield',
title: 'Secure & Private',
description: 'Your privacy and security are our top priorities'
},
{
icon: 'Heart',
title: 'Personalized Care',
description: 'Tailored experiences crafted just for you'
},
{
icon: 'Gem',
title: 'Luxury Design',
description: 'Elegantly designed spaces with attention to every detail'
}
],
luxury_gallery: [],
luxury_testimonials: [
{
name: 'Sarah Johnson',
title: 'Business Executive',
quote: 'An absolutely stunning experience. The attention to detail and level of service exceeded all expectations.',
image: ''
},
{
name: 'Michael Chen',
title: 'Travel Enthusiast',
quote: 'The epitome of luxury. Every moment was perfect, from check-in to check-out.',
image: ''
},
{
name: 'Emma Williams',
title: 'Luxury Traveler',
quote: 'This hotel redefines what luxury means. I will definitely return.',
image: ''
}
],
about_preview_title: 'About Our Luxury Hotel',
about_preview_content: 'Discover a world of refined elegance and exceptional service. Our hotel combines timeless luxury with modern amenities to create an unforgettable experience.',
about_preview_image: ''
}
};