summaryrefslogtreecommitdiff
path: root/frontend/src/layouts/Layout.astro
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/layouts/Layout.astro')
-rw-r--r--frontend/src/layouts/Layout.astro34
1 files changed, 17 insertions, 17 deletions
diff --git a/frontend/src/layouts/Layout.astro b/frontend/src/layouts/Layout.astro
index 047538c..1a47613 100644
--- a/frontend/src/layouts/Layout.astro
+++ b/frontend/src/layouts/Layout.astro
@@ -1,8 +1,8 @@
---
import Footer from '../components/Footer.astro';
-
+
interface Props {
- title: string;
+ title: string;
}
const { title } = Astro.props;
@@ -10,18 +10,18 @@ const { title } = Astro.props;
<!DOCTYPE html>
<html lang="sco">
- <head>
- <meta charset="UTF-8" />
- <meta name="description" content="The wabsteid o the Scots Leid Associe">
- <meta name="viewport" content="width=device-width" />
- <link rel="icon" href="/favicon.ico" />
- <link rel="stylesheet" href="/public/normalize.css" />
- <link rel="stylesheet" href="/public/main.css" />
- <meta name="generator" content={Astro.generator} />
- <title>{title} | Scots Leid Associe</title>
- </head>
- <body>
- <slot />
- <Footer />
- </body>
-</html> \ No newline at end of file
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="description" content="The wabsteid o the Scots Leid Associe" />
+ <meta name="viewport" content="width=device-width" />
+ <link rel="icon" href="/favicon.ico" />
+ <link rel="stylesheet" href="/public/normalize.css" />
+ <link rel="stylesheet" href="/public/main.css" />
+ <meta name="generator" content={Astro.generator} />
+ <title>{title} | Scots Leid Associe</title>
+ </head>
+ <body>
+ <slot />
+ <Footer />
+ </body>
+</html>