Call it Base instead of Layout
This commit is contained in:
parent
be541ddc8d
commit
468b91eff3
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
// Layout
|
||||
import Layout from "@layouts/Default.astro";
|
||||
import Base from "@layouts/Default.astro";
|
||||
---
|
||||
|
||||
<Layout Title="Poke" Description="▶▶ Poke - The privacy app of your dreams!"></Layout>
|
||||
<Base Title="Poke" Description="▶▶ Poke - The privacy app of your dreams!"></Base>
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
// Layout
|
||||
import Layout from "@layouts/Default.astro";
|
||||
import Base from "@layouts/Default.astro";
|
||||
|
||||
// i18n
|
||||
import i18next, { t } from "i18next";
|
||||
|
@ -16,7 +16,7 @@ import MobileScreenshot from '@assets/screenshots/mobile.jpg'
|
|||
import Chan from '@assets/chan/v2.png'
|
||||
---
|
||||
|
||||
<Layout Title="Poke" Description="▶▶ Poke - The privacy app of your dreams!">
|
||||
<Base Title="Poke" Description="▶▶ Poke - The privacy app of your dreams!">
|
||||
<video playsinline autoplay muted loop class="landing-background" src="/flurry-background.webm" type="video/webm"/>
|
||||
<div class="landing">
|
||||
<h1>{t("landing.heading")}</h1>
|
||||
|
@ -103,12 +103,13 @@ import Chan from '@assets/chan/v2.png'
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Layout>
|
||||
</Base>
|
||||
|
||||
<style lang="scss" is:global>
|
||||
header {
|
||||
background: transparent !important;
|
||||
border: none !important;
|
||||
backdrop-filter: blur(1px);
|
||||
}
|
||||
video {
|
||||
position: fixed;
|
||||
|
|
Reference in a new issue