export default function Testimonials() {
	return (
		<div className="bg-rebeccapurple-600">
			<div className="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
				<p className="text-xl text-white text-center text-base font-semibold uppercase text-gray-600 tracking-wider">
					Trusted by digital nomads in
					<div className="h-[2rem] relative flex">
						<span className="location">Bali</span>
						<span className="location">Tulum</span>
						<span className="location">Tbilissi</span>
						<span className="location">Bansko</span>
						<span className="location">Zanzibar</span>
						<span className="location">Mauritius</span>
						<span className="location">Amsterdam</span>
					</div>
				</p>
			</div>
		</div>
	);
}