2
2
import MainHead from " ../components/MainHead.astro" ;
3
3
import Nav from " ../components/Nav.astro" ;
4
4
import Footer from " ../components/Footer.astro" ;
5
-
5
+ import { GoogleAnalytics } from " astro-google-analytics " ;
6
6
interface Props {
7
7
title? : string | undefined ;
8
8
description? : string | undefined ;
9
9
}
10
10
11
11
const {
12
- title = " Vignesh S Naik - Software Developer from Kochi, India" ,
12
+ title = " Vignesh S Naik - Software Developer from Kochi, India" ,
13
13
description = " Welcome to the personal website of Vignesh S Naik, a software developer. Explore projects, skills, and get in touch." ,
14
14
} = Astro .props ;
15
15
---
16
16
17
17
<html lang =" en" >
18
18
<head >
19
+ <GoogleAnalytics id =" G-7FD9ZS8SH9" />
19
20
<MainHead title ={ title } description ={ description } />
20
21
<meta
21
22
name =" google-site-verification"
@@ -82,8 +83,8 @@ const {
82
83
min-height: 100%;
83
84
isolation: isolate;
84
85
background:
85
- /*noise*/ url("/assets/backgrounds/noise.png") top
86
- center/220px repeat,
86
+ /*noise*/
87
+ url("/assets/backgrounds/noise.png") top center/220px repeat,
87
88
/*footer*/ var(--bg-image-footer) bottom
88
89
center/var(--bg-gradient-size) no-repeat,
89
90
/*header1*/ var(--bg-image-main-curves) top
@@ -92,9 +93,12 @@ const {
92
93
no-repeat,
93
94
/*base*/ var(--gray-999);
94
95
background-blend-mode:
95
- /*noise*/ overlay,
96
- /*footer*/ var(--bg-blend-mode), /*header1*/ var(--bg-svg-blend-mode),
97
- /*header2*/ normal, /*base*/ normal;
96
+ /*noise*/
97
+ overlay,
98
+ /*footer*/ var(--bg-blend-mode),
99
+ /*header1*/ var(--bg-svg-blend-mode),
100
+ /*header2*/ normal,
101
+ /*base*/ normal;
98
102
}
99
103
@media (forced-colors: active) {
100
104
/* Deactivate custom backgrounds for high contrast users. */
0 commit comments