all work from f

This commit is contained in:
dev sp
2023-12-15 16:07:39 +00:00
parent e427961a44
commit fa618afc81
32 changed files with 719 additions and 471 deletions

View File

@@ -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%);