forked from manulthanura/Positivus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5d15fb
commit c5c28f8
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
@@ -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> |