--- import Logo from "@components/Logo.astro"; import Layout from "@layouts/Layout.astro"; import { getLangFromUrl, useTranslations } from "../../i18n/utils"; export function getStaticPaths() { const STATIC_PATHS = [{ params: { lang: "en_US" } }, { params: { lang: "jp" } }]; return STATIC_PATHS; } export const prerender = true; const lang = getLangFromUrl(Astro.url); const t = useTranslations(lang); import { VERSION } from "astro:env/client"; ---

nebula.

Version: {VERSION}

© Nebula Services 2024