From 3b24a82ef43f2884b0e8067aeb16321cc6f2f294 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Sat, 10 Sep 2022 01:38:35 +0630 Subject: [PATCH] Add footer --- src/components/Footer.astro | 62 +++++++++++++++++++++++++++++++++++++ src/pages/index.astro | 3 ++ 2 files changed, 65 insertions(+) create mode 100644 src/components/Footer.astro diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..8090c3a --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,62 @@ + + + diff --git a/src/pages/index.astro b/src/pages/index.astro index bf81c07..c6c3955 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,6 +2,7 @@ import Layout from "@layouts/Layout.astro"; import Header from "@components/Header.astro"; import Card from "@components/Card.astro"; +import Footer from "@components/Footer.astro"; export interface Frontmatter { title: string; @@ -117,6 +118,8 @@ const sortedPosts = posts.sort( + +