idk, working on showcase XD

This commit is contained in:
2024-04-15 16:37:54 +02:00
parent fd03b7b9cf
commit 82251d5272
9 changed files with 448 additions and 44 deletions

View File

@@ -2,9 +2,11 @@
import MainLayout from "../../layouts/MainLayout.astro";
import Hero from "../../components/Hero.astro";
import About from "../../components/About.astro";
import Showcase from "../../components/Showcase.astro";
//@ts-ignore
import { dictionary } from "../../i18n/dictionary";
const { title, description } = dictionary[Astro.currentLocale];
export async function getStaticPaths() {
@@ -16,5 +18,5 @@ export async function getStaticPaths() {
<MainLayout title={title} description={description} lang={Astro.currentLocale} themeOverride="theme_auto">
<Hero />
<About />
<Hero />
<Showcase />
</MainLayout>