From ca90f4810a173d476facb0064cd5b10c6570cb35 Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 18 May 2023 08:54:09 -0400 Subject: chore: fix styling for footer + move to components/ --- src/layouts/Base.astro | 11 ++--------- src/layouts/Index.astro | 2 +- 2 files changed, 3 insertions(+), 10 deletions(-) (limited to 'src/layouts') diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 29f95ab..a8aa63e 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -1,13 +1,9 @@ --- import Head from "@components/Head.astro"; +import Footer from "@components/Footer.astro"; import Nav from "@components/Nav.astro"; -// import Footer from "@components/Footer.astro"; -import { execa } from "execa"; -import "@styles/global.sass"; const { title, description } = Astro.props; - -const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]); --- @@ -17,9 +13,6 @@ const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]);