--- import Dropdown from "@components/UI/Dropdown.astro"; import { i18n } from "@i18n/utils"; const t = i18n.inferLangUseTranslations(Astro.url); const themeList = [ { name: t("settings.customization.theme.Alu"), value: "alu" }, { name: t("settings.customization.theme.Macchiato"), value: "macchiato" }, { name: t("settings.customization.theme.Mocha"), value: "mocha" }, { name: "Rosé Pine", value: "rose_pine" }, ]; const languageList = [ { name: "English", value: "en" }, { name: "日本語", value: "jp" }, ]; ---