import { Profile, Post } from './types'

export const profileData: Profile = {
  username: 'volga33833',
  displayName: 'VOLGA 🚀',
  bio: 'Creative content creator | Digital nomad | Sharing stories, tips & inspiration 🎬✨ | DM for collabs',
  avatar: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop',
  followers: 2450000,
  following: 1250,
  totalLikes: 89500000,
  verified: true,
  videoCount: 2847,
}

export const postsData: Post[] = [
  {
    id: '1',
    title: 'Morning Vibes ☀️',
    description: 'Starting the day with positive energy and coffee ☕ What\'s your morning routine?',
    thumbnail: 'https://images.unsplash.com/photo-1516321318423-f06f70504504?w=500&h=650&fit=crop',
    likes: 2456000,
    comments: 125600,
    shares: 45300,
    url: '#',
  },
  {
    id: '2',
    title: 'Travel Chronicles 🌍',
    description: 'Just arrived in this beautiful coastal town. The sunsets here are unreal! 🌅',
    thumbnail: 'https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=500&h=650&fit=crop',
    likes: 1890000,
    comments: 89450,
    shares: 32100,
    url: '#',
  },
  {
    id: '3',
    title: 'Creative Process 🎨',
    description: 'Behind the scenes of our latest project. The hustle is real but so rewarding! 💪',
    thumbnail: 'https://images.unsplash.com/photo-1552664730-d307ca884978?w=500&h=650&fit=crop',
    likes: 1654000,
    comments: 72300,
    shares: 28900,
    url: '#',
  },
]
