- 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
17 lines
501 B
Plaintext
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> |