From 94c4bf29a7c5b8ffbab59ca6f83540abb1600160 Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Sun, 11 Sep 2022 15:25:49 +0630 Subject: [PATCH] Add footer in tags page --- src/pages/tags.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/tags.astro b/src/pages/tags.astro index 0315a15..e76a1b5 100644 --- a/src/pages/tags.astro +++ b/src/pages/tags.astro @@ -1,8 +1,9 @@ --- import Header from "@components/Header.astro"; -import Tag from "@components/Tag.astro"; +import Footer from "@components/Footer.astro"; import Layout from "@layouts/Layout.astro"; import Main from "@layouts/Main.astro"; +import Tag from "@components/Tag.astro"; import getUniqueTags from "@utils/getUniqueTags"; import type { Frontmatter } from "@utils/types"; @@ -18,4 +19,5 @@ let tags = getUniqueTags(posts); {tags.map((tag) => )} +