From c2c2b103ca08de08256d03e732ad2da55406f612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Miguel=20Sarasola?= Date: Sun, 3 Sep 2023 15:49:19 +0200 Subject: [PATCH] Add View transitions --- src/layouts/Base.astro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 6c465f8..1c07c01 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -1,4 +1,6 @@ --- +import { ViewTransitions } from "astro:transitions"; + import Header from "../components/Header.astro"; import Footer from "../components/Footer.astro"; @@ -28,6 +30,7 @@ const { title } = Astro.props; {title} +
-- 2.45.2