Audacity
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
new file mode 100644
index 0000000..f63f99e
--- /dev/null
+++ b/src/layouts/BaseLayout.astro
@@ -0,0 +1,25 @@
+---
+import Footer from "../components/footer/Footer.astro";
+import NavigationReact from "../components/navigation/NavigationReact";
+
+export interface Props {
+ title: string;
+}
+const { title } = Astro.props;
+---
+
+
+
+
+
+
+
+
+
{title}
+
+
+
+
+
+
+
diff --git a/src/layouts/DownloadPageLayout.astro b/src/layouts/DownloadPageLayout.astro
deleted file mode 100644
index db16e0d..0000000
--- a/src/layouts/DownloadPageLayout.astro
+++ /dev/null
@@ -1,22 +0,0 @@
----
-import Layout from "./Layout.astro";
-
-export interface Props {
- title: string;
-}
-const { title } = Astro.props;
----
-
-
-
-
-
- {title}
-
-
Version 3.2.4
-
-
-
-
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
deleted file mode 100644
index 5a73f74..0000000
--- a/src/layouts/Layout.astro
+++ /dev/null
@@ -1,26 +0,0 @@
----
-import Footer from '../components/footer/Footer.astro';
-import NavigationReact from '../components/navigation/NavigationReact';
-
-export interface Props {
- title: string;
-}
-const { title } = Astro.props;
----
-
-
-
-
-
-
-
-
-
{title}
-
-
-
-
-
-
-
-
diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro
new file mode 100644
index 0000000..b1d6083
--- /dev/null
+++ b/src/layouts/PageLayout.astro
@@ -0,0 +1,17 @@
+---
+export interface Props {
+ title: string;
+}
+const { title } = Astro.props;
+---
+
+
+
+
+
+
+
diff --git a/src/layouts/PostLayout.astro b/src/layouts/PostLayout.astro
index f205a86..a2ccbda 100644
--- a/src/layouts/PostLayout.astro
+++ b/src/layouts/PostLayout.astro
@@ -1,5 +1,5 @@
---
-import Layout from "./Layout.astro";
+import BaseLayout from "./BaseLayout.astro";
interface Props {
frontmatter: {
@@ -14,7 +14,7 @@ interface Props {
const { frontmatter } = Astro.props;
---
-
+
{frontmatter.title}
@@ -34,7 +34,7 @@ const { frontmatter } = Astro.props;
/>
-
+