import type { Metadata } from "@/types"; export async function getMetadata(): Promise { const response = await fetch(`/api/meta`); return await response.json(); }