Skip to content

Commit 5f2fdf0

Browse files
committed
footers
1 parent 3ef5110 commit 5f2fdf0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/pages/ideas.astro

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import BaseLayout from "../layouts/layout.astro";
33
import ideas from "../content/ideas.json";
44
import PageHeader from "../components/pageHeader/pageHeader.jsx";
55
import Card from "../components/card/card.jsx";
6+
import Footer from "../components/footer/footer.jsx";
67
---
78

89
<BaseLayout title="Serverless - Ideas">
@@ -22,6 +23,8 @@ import Card from "../components/card/card.jsx";
2223
/>
2324
))}
2425
</div>
26+
27+
<Footer />
2528
</BaseLayout>
2629

2730
<style lang="scss">

src/pages/resources.astro

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import BaseLayout from "../layouts/layout.astro";
33
import PageHeader from "../components/pageHeader/pageHeader.jsx";
44
import Card from "../components/card/card.jsx";
5+
import Footer from "../components/footer/footer.jsx";
56
67
const data = Astro.fetchContent("../content/resources/*.md");
78
let tagBlaster = [];
@@ -41,6 +42,8 @@ const tags = [...new Set(flatTags.map(JSON.stringify))].map(JSON.parse);
4142
/>
4243
))}
4344
</div>
45+
46+
<Footer />
4447
</BaseLayout>
4548

4649
<script>

0 commit comments

Comments
 (0)