aboutsummaryrefslogtreecommitdiff
path: root/src/layouts
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2024-01-07 22:20:55 -0500
committerAndrew Lee <alee14498@protonmail.com>2024-01-07 22:20:55 -0500
commit57965c763f38db0b7f48cae40169e52274a936cb (patch)
tree8f802a8bb95dfc9d96db330e1608dc094a74e27e /src/layouts
parentb34c5413633ff4faffc626142f0cc83175d94747 (diff)
downloadpersonal-website-57965c763f38db0b7f48cae40169e52274a936cb.tar.gz
personal-website-57965c763f38db0b7f48cae40169e52274a936cb.tar.bz2
personal-website-57965c763f38db0b7f48cae40169e52274a936cb.zip
Added specs; Modified CSS
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/Default.astro2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro
index b54dc35..7b56234 100644
--- a/src/layouts/Default.astro
+++ b/src/layouts/Default.astro
@@ -4,6 +4,7 @@ interface Props {
}
const { title } = Astro.props;
+import { ViewTransitions } from 'astro:transitions';
import Navbar from '../components/Navbar.astro';
---
@@ -18,6 +19,7 @@ import Navbar from '../components/Navbar.astro';
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
+ <ViewTransitions />
<title>{title}</title>
</head>
<body>