Skip to content

Commit 2a182ef

Browse files
committed
chore: remove view transitions
1 parent 6628801 commit 2a182ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/layouts/BaseLayout.astro

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
import "@fontsource-variable/jetbrains-mono";
33
import "./app.css";
4-
import { ClientRouter } from "astro:transitions";
54
import Footer from "~/components/Footer.astro";
65
import Navbar from "~/components/Navbar";
76
@@ -26,12 +25,11 @@ const {
2625
<title>{title}</title>
2726
<meta name="description" content={description} />
2827
<slot name="head" />
29-
<ClientRouter />
3028
</head>
3129
<body>
3230
<Navbar client:load />
3331
<slot />
34-
<Footer transition:persist="footer" />
32+
<Footer />
3533
</body>
3634
</html>
3735

0 commit comments

Comments
 (0)