mirror of
https://github.com/TheTaz25/denis.ergin.git
synced 2025-07-12 22:08:48 +00:00
feat(layout): add footer with impressum section
This commit is contained in:
parent
9512c81903
commit
fbc60211c6
6 changed files with 112 additions and 43 deletions
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
import Navigation from '../components/nav.astro'
|
||||
import Footer from '../components/footer.astro'
|
||||
import { getLangFromUrl } from '../i18n/utils';
|
||||
import '../styles/global.css'
|
||||
|
||||
|
@ -29,6 +30,7 @@ const lang = getLangFromUrl(Astro.url);
|
|||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
<style is:global lang="scss">
|
||||
|
@ -40,6 +42,9 @@ const lang = getLangFromUrl(Astro.url);
|
|||
body {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
min-height: 100vh;
|
||||
}
|
||||
code {
|
||||
font-family:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue