mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-03 16:10:26 +03:00
refactor: simplify Analytics component and update BaseLayout
* style: enhance Header component and update SCSS imports - Improved the Header component by adding a site title with styling. - Wrapped navigation links in a div for better structure. - Updated SCSS imports across multiple components for consistency. * refactor: simplify Analytics component and update BaseLayout - Removed props from the Analytics component to streamline its usage. - Updated BaseLayout to call Analytics without passing the title prop, ensuring default values are used.
This commit is contained in:
@ -1,17 +1,2 @@
|
|||||||
---
|
|
||||||
type Props = {
|
|
||||||
readonly title: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const path = Astro.url.pathname;
|
|
||||||
const { title } = Astro.props;
|
|
||||||
---
|
|
||||||
|
|
||||||
<!-- AppMetrix -->
|
<!-- AppMetrix -->
|
||||||
<script is:inline src="https://appmetrix.com/pixel/T5X0z12SoASBV8Dv"></script>
|
<script is:inline src="https://appmetrix.com/pixel/T5X0z12SoASBV8Dv"></script>
|
||||||
|
|
||||||
<!-- GoatCounter -->
|
|
||||||
<script is:inline data-goatcounter="https://analytics.popov.link/count" src="//gc.zgo.at/count.js"></script>
|
|
||||||
<noscript>
|
|
||||||
<img alt="pixel" src={`https://analytics.popov.link/count?p=${encodeURI(path)}&t=${encodeURI(title)}`} />
|
|
||||||
</noscript>
|
|
||||||
|
@ -14,8 +14,8 @@ const { description, title } = Astro.props;
|
|||||||
|
|
||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
<Head
|
<Head
|
||||||
description={description ?? import.meta.env.DEFAULT_DESCRIPTION}
|
|
||||||
title={title ?? import.meta.env.DEFAULT_TITLE}
|
title={title ?? import.meta.env.DEFAULT_TITLE}
|
||||||
|
description={description ?? import.meta.env.DEFAULT_DESCRIPTION}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -26,6 +26,6 @@ const { description, title } = Astro.props;
|
|||||||
|
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
<Analytics title={title ?? import.meta.env.DEFAULT_TITLE} />
|
<Analytics />
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user