File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import BaseLayout from "../layouts/layout.astro";
3
3
import ideas from " ../content/ideas.json" ;
4
4
import PageHeader from " ../components/pageHeader/pageHeader.jsx" ;
5
5
import Card from " ../components/card/card.jsx" ;
6
+ import Footer from " ../components/footer/footer.jsx" ;
6
7
---
7
8
8
9
<BaseLayout title =" Serverless - Ideas" >
@@ -22,6 +23,8 @@ import Card from "../components/card/card.jsx";
22
23
/>
23
24
))}
24
25
</div >
26
+
27
+ <Footer />
25
28
</BaseLayout >
26
29
27
30
<style lang =" scss" >
Original file line number Diff line number Diff line change 2
2
import BaseLayout from " ../layouts/layout.astro" ;
3
3
import PageHeader from " ../components/pageHeader/pageHeader.jsx" ;
4
4
import Card from " ../components/card/card.jsx" ;
5
+ import Footer from " ../components/footer/footer.jsx" ;
5
6
6
7
const data = Astro .fetchContent (" ../content/resources/*.md" );
7
8
let tagBlaster = [];
@@ -41,6 +42,8 @@ const tags = [...new Set(flatTags.map(JSON.stringify))].map(JSON.parse);
41
42
/>
42
43
))}
43
44
</div >
45
+
46
+ <Footer />
44
47
</BaseLayout >
45
48
46
49
<script >
You can’t perform that action at this time.
0 commit comments