"use server"; import type { Atoll, DataResponse } from "@/lib/backend-types"; export async function getAtollsWithIslands(): Promise> { const response = await fetch( `${process.env.SARLINK_API_BASE_URL}/api/auth/atolls`, ); return response.json(); }