import React from 'react'; import { useNavigate } from 'react-router-dom'; const LanguageSelection = () => { const navigate = useNavigate(); const languages = [ { name: 'Bulgarian', nativeName: 'Говоря български', flag: 'https://images.unsplash.com/photo-1607427293702-036707fc51c0?auto=format&fit=crop&w=64&h=64', }, { name: 'Arabic', nativeName: 'أتحدث العربية', flag: 'https://images.unsplash.com/photo-1607427293702-036707fc51c0?auto=format&fit=crop&w=64&h=64', }, { name: 'Spanish', nativeName: 'Hablo español', flag: 'https://images.unsplash.com/photo-1607427293702-036707fc51c0?auto=format&fit=crop&w=64&h=64', }, { name: 'Romanian', nativeName: 'Vorbesc română', flag: 'https://images.unsplash.com/photo-1607427293702-036707fc51c0?auto=format&fit=crop&w=64&h=64', }, ]; return (