This commit is contained in:
SanjayramVempati 2023-03-15 16:40:31 -04:00
parent 781801156b
commit 7aab8dae81
3 changed files with 10 additions and 3 deletions

View File

@ -0,0 +1,5 @@
---
import logo from '../images/logo.png';
---
<footer class="bg-indigo-900 h-32 "></div>

Binary file not shown.

View File

@ -4,6 +4,7 @@ import Layout from '../layouts/Layout.astro';
// Components
import Nav from '../components/Nav.astro';
import Footer from '../components/Footer.astro';
//Image import
import mountain from '../images/mountain.jpg';
---
@ -18,10 +19,11 @@ import mountain from '../images/mountain.jpg';
<Nav></Nav>
</div>
</div>
<div class="h-96 bg-slate-500"></div>
<div class="h-96 bg-slate-500"></div>
<Footer></Footer>
</Layout>