generated from dwd/boilarplate-astro-tailwind
all work from f
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
---
|
||||
import MainHeader from '../components/MainHeader.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
export interface Props {
|
||||
title: string;
|
||||
}
|
||||
@@ -16,10 +18,18 @@ const { title } = Astro.props;
|
||||
<title>{title}</title>
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
<MainHeader />
|
||||
<div class="pt-[100px]">
|
||||
<slot />
|
||||
</div>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
<style is:global>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
|
||||
*{
|
||||
font-family: 'Quicksand', sans-serif;
|
||||
}
|
||||
/* :root {
|
||||
--accent: 124, 58, 237;
|
||||
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%);
|
||||
|
||||
Reference in New Issue
Block a user