Add Table Styles

This commit is contained in:
2024-03-01 21:45:50 +01:00
parent 77bf19a1c8
commit 474187899f
7 changed files with 44 additions and 12 deletions

View File

@@ -3,6 +3,7 @@ import {getCollection} from "astro:content";
import {astroI18n, createGetStaticPaths} from "astro-i18n";
import PageLayout from "../layouts/PageLayout.astro";
import LanguageWarning from "../components/LanguageWarning.astro";
import "@styles/table.css";
export const getStaticPaths = createGetStaticPaths(async () => {
let posts = await getCollection("pages", value => value.id.split("/")[0] === astroI18n.locale);