diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-01 20:21:11 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-02 18:57:52 +0100 |
| commit | 227eac690914886c5dd6d9a8bd627534c86b4a5d (patch) | |
| tree | 36927e42c47b8e1c7c0135bf358e954b0bd8e41a /src/layouts/Layout.astro | |
| parent | 6bd4846b71944add485433703d85982b2396d9ad (diff) | |
Initial commit
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro deleted file mode 100644 index 3345b88..0000000 --- a/src/layouts/Layout.astro +++ /dev/null @@ -1,39 +0,0 @@ ---- -interface Props { - title: string; -} - -const { title } = Astro.props; ---- - -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="description" content="Astro description"> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <meta name="generator" content={Astro.generator} /> - <title>{title}</title> - </head> - <body> - <slot /> - </body> -</html> -<style is:global> - :root { - --accent: 136, 58, 234; - --accent-light: 224, 204, 250; - --accent-dark: 49, 10, 101; - --accent-gradient: linear-gradient(45deg, rgb(var(--accent)), rgb(var(--accent-light)) 30%, white 60%); - } - html { - font-family: system-ui, sans-serif; - background: #13151A; - background-size: 224px; - } - code { - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; - } -</style> |
