From a4b1886b210213b0becf1a134d06882db631f647 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 23 May 2025 17:15:05 +0200 Subject: Add analytics --- src/layouts/StandardLayout.astro | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'src/layouts/StandardLayout.astro') diff --git a/src/layouts/StandardLayout.astro b/src/layouts/StandardLayout.astro index a6c9151..e6a4bec 100644 --- a/src/layouts/StandardLayout.astro +++ b/src/layouts/StandardLayout.astro @@ -1,15 +1,17 @@ --- -import '../styles/global.css'; +import "../styles/global.css"; interface Props { title?: string; description?: string; } -const { - title = "Astro Site", - description = "A simple Astro site with blog functionality" +const { + title = "Astro Site", + description = "A simple Astro site with blog functionality", } = Astro.props; + +import Analytics from "../components/Analytics.astro"; --- @@ -20,6 +22,7 @@ const {