import { cookies } from 'next/headers' import { MARKETPLACE_LANGUAGE_COOKIE, SHARED_LANGUAGE_COOKIE, isCarplaceLanguage, type CarplaceLanguage } from './i18n' export async function getCarplaceLanguage(): Promise { const cookieStore = await cookies() const cookieValue = cookieStore.get(SHARED_LANGUAGE_COOKIE)?.value ?? cookieStore.get(MARKETPLACE_LANGUAGE_COOKIE)?.value return isCarplaceLanguage(cookieValue) ? cookieValue : 'en' }