Artikel Sehat
import { useState } from 'react';
import { Mail, MapPin, Globe, Calendar, Ruler, Palette, Languages, Eye, Camera } from 'lucide-react';
import { Card } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
const Index = () => {
const [selectedImage, setSelectedImage] = useState(0);
const galleryImages = [
'/lovable-uploads/28de6b57-d719-4f64-ac6e-01573ff76ead.png',
'https://images.unsplash.com/photo-1649972904349-6e44c42644a7?w=800&h=1200&fit=crop',
'https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&h=1200&fit=crop',
'https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?w=800&h=1200&fit=crop',
'https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?w=800&h=1200&fit=crop'
];
const modelStats = [
{ icon: Calendar, label: 'Age', value: '26' },
{ icon: MapPin, label: 'Location', value: 'London, UK' },
{ icon: Ruler, label: 'Height', value: '5\'8"' },
{ icon: Ruler, label: 'Hips', value: '36"' },
{ icon: Ruler, label: 'Waist', value: '26"' },
{ icon: Eye, label: 'Eye Color', value: 'Brown' },
{ icon: Palette, label: 'Hair Color', value: 'Dark Brown' },
{ icon: Camera, label: 'Bust/Chest', value: '34B' },
{ icon: Languages, label: 'Languages', value: 'English, Spanish' },
{ icon: Globe, label: 'Ethnicity', value: 'Mixed' }
];
return (
{/* Hero Section */}
{/* Left Content */}
Colin
Blackman
Professional Model
Versatile fashion and commercial model based in London, bringing creativity and professionalism to every shoot.
{/* Right - Main Image */}
{/* Stats Grid */}
Profile Details
Professional specifications and measurements
{modelStats.map((stat, index) => (
{stat.label}
{stat.value}
))}
{/* Photo Gallery */}
Portfolio Gallery
A showcase of versatility and style
{galleryImages.map((image, index) => (
setSelectedImage(index)}
>
))}
{/* Selected Image Display */}
{/* CTA Section */}
Ready to Collaborate?
Let's create something amazing together. Available for fashion shoots, commercial work, and creative projects.
);
};
export default Index;