import { motion } from "framer-motion"; const countries = [ { name: "UAE", flag: "/flags/uae.png", url: "https://uae.badritech.com" }, { name: "Turkey", flag: "/flags/turkey.png", url: "https://turkey.badritech.com" }, { name: "Pakistan", flag: "/flags/pakistan.png", url: "https://pakistan.badritech.com" }, ]; export default function CountrySelector() { return (
Select Your Country
{countries.map((country, index) => ( {country.name} {country.name} ))}
); }