const { data: country } = await supabaseService
.from("country")
.select("*, city(*)")
.eq("slug", params!.country)
.single();
const { data: country } = await supabaseService
.from("country")
.select("*, city(*)")
.eq("slug", params!.country)
.single();