Blboun3 ea0de50abe
Finished bare-bones Hero section
- Finished bare-bones Hero section without content in both color schemes
- One image in publi/temp.jpg (for hero section, TODO: replace and rename)

TODO:
* jump-scroll
* about sections
2024-04-03 09:21:48 +02:00

17 lines
501 B
Plaintext

---
import MainLayout from "../../layouts/MainLayout.astro";
import Hero from "../../components/Hero.astro";
//@ts-ignore
import { dictionary } from "../../i18n/dictionary";
const { title, description } = dictionary[Astro.currentLocale];
export async function getStaticPaths() {
return ["en", "fr", "cs", "de"].map((lang) => {
return { params: { lang } };
});
}
---
<MainLayout title={title} description={description} lang={Astro.currentLocale} themeOverride="dark">
<Hero />
</MainLayout>