From 318a320acfb2db97abba3263a3d3929cbbf693dd Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 15 Jun 2025 13:59:21 +0200 Subject: Remove old files and some cleanup --- src/layouts/CenteredLayout.astro | 28 --------------------- src/layouts/StandardLayout.astro | 54 ---------------------------------------- 2 files changed, 82 deletions(-) delete mode 100644 src/layouts/CenteredLayout.astro delete mode 100644 src/layouts/StandardLayout.astro (limited to 'src/layouts') diff --git a/src/layouts/CenteredLayout.astro b/src/layouts/CenteredLayout.astro deleted file mode 100644 index 1b9286c..0000000 --- a/src/layouts/CenteredLayout.astro +++ /dev/null @@ -1,28 +0,0 @@ ---- -import "../styles/global.css"; -import Analytics from "../components/Analytics.astro"; - -interface Props { - title?: string; -} - -const { title = "Astro Site" } = Astro.props; ---- - - - - - - - - {title} - - - -
-
- -
-
- - diff --git a/src/layouts/StandardLayout.astro b/src/layouts/StandardLayout.astro deleted file mode 100644 index e6a4bec..0000000 --- a/src/layouts/StandardLayout.astro +++ /dev/null @@ -1,54 +0,0 @@ ---- -import "../styles/global.css"; - -interface Props { - title?: string; - description?: string; -} - -const { - title = "Astro Site", - description = "A simple Astro site with blog functionality", -} = Astro.props; - -import Analytics from "../components/Analytics.astro"; ---- - - - - - - - - - {title} - - - -
-
- -
-
- -
-
- -
-
- - - - -- cgit v1.3.1