Skip to content

Commit

Permalink
Update Layout.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
manulthanura committed Apr 10, 2024
1 parent b5d15fb commit c5c28f8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
import "../styles/global.css";
import Navbar from '../components/Navbar.astro';
import Footer from '../components/Footer.astro';
---

<!doctype html>
Expand All @@ -10,15 +12,17 @@ import "../styles/global.css";
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>Portfolio</title>
<title>Positivus</title>
<meta
name="description"
content="A portfolio template built with astro and tailwindcss"
content="A beautiful and functional landing page design created specifically for digital marketing agencies. With its clean and modern design, Positivus is the perfect template to showcase your agency's services and case studies to potential clients. Built with astro and tailwindcss"
/>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:[email protected]&display=swap" rel="stylesheet">
</head>
<body class="bg-white font-SpaceGrotesk">
<body class="bg-white font-SpaceGrotesk space-y-20">
<Navbar />
<slot />
<Footer/>
<script is:inline src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.8.0/flowbite.min.js"></script>
</body>
</html>

0 comments on commit c5c28f8

Please sign in to comment.