#11 - basic layout (#15)

* #11 - basic layout

* #5 - bump dependencies

* #11 - fix

* #11 - fix

* #11 - fix logo
This commit is contained in:
Adrian Hopek
2022-01-12 14:18:25 +01:00
committed by GitHub
parent 2abd83526d
commit e015f02892
11 changed files with 681 additions and 658 deletions

View File

@@ -0,0 +1,19 @@
<template>
<div class="min-h-full">
<MainMenu />
<main class="-mt-24 pb-8">
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:max-w-7xl lg:px-8">
<slot />
</div>
</main>
</div>
</template>
<script>
import MainMenu from '@/Shared/MainMenu';
export default {
name: 'Layout',
components: {MainMenu},
};
</script>