From 8fd8b7e53d59a034706dd7eaad6b608721ce3cdb Mon Sep 17 00:00:00 2001
From: seth
Date: Wed, 22 May 2024 22:00:02 -0400
Subject: move to zola
---
src/layouts/Base.astro | 22 ----------------------
src/layouts/Index.astro | 26 --------------------------
src/layouts/Page.astro | 10 ----------
3 files changed, 58 deletions(-)
delete mode 100644 src/layouts/Base.astro
delete mode 100644 src/layouts/Index.astro
delete mode 100644 src/layouts/Page.astro
(limited to 'src/layouts')
diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro
deleted file mode 100644
index c60347c..0000000
--- a/src/layouts/Base.astro
+++ /dev/null
@@ -1,22 +0,0 @@
----
-import Footer from "@components/Footer.astro";
-import Head from "@components/Head.astro";
-import Nav from "@components/Nav.astro";
-
-const { title, description } = Astro.props.frontmatter || Astro.props;
----
-
-
-
-
-
- getchoo's website 🚀
-
-
-
-
-
-
-
-
-
diff --git a/src/layouts/Index.astro b/src/layouts/Index.astro
deleted file mode 100644
index e4b3d50..0000000
--- a/src/layouts/Index.astro
+++ /dev/null
@@ -1,26 +0,0 @@
----
-import gifs from "@assets/gifs";
-import Base from "@layouts/Base.astro";
-import Picture from "astro/components/Picture.astro";
-
-const { title, description } = Astro.props.frontmatter;
----
-
-
-
-
- {
- gifs.map(({ image, alt }) => {
- const img =
;
-
- if (image.src.includes("steam")) {
- return
{img};
- } else if (image.src.includes("poweredbynix")) {
- return
{img};
- } else {
- return img;
- }
- })
- }
-
-
diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro
deleted file mode 100644
index e740d36..0000000
--- a/src/layouts/Page.astro
+++ /dev/null
@@ -1,10 +0,0 @@
----
-import Base from "@layouts/Base.astro";
-const { title, description } = Astro.props.frontmatter || Astro.props;
----
-
-
-
-
-
-
--
cgit v1.2.3