Skip to content

Commit 83a38db

Browse files
committed
changes
1 parent 4d69241 commit 83a38db

1 file changed

Lines changed: 100 additions & 33 deletions

File tree

src/layouts/Layout.astro

Lines changed: 100 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Footer from '../components/Footer.astro';
2+
import Footer from "../components/Footer.astro";
33
interface Props {
44
title: string;
55
}
@@ -17,67 +17,134 @@ const { title } = Astro.props;
1717

1818
<title>{title}</title>
1919

20-
<meta name="title" content="Jenish MS | Jenish | MS Freelancer | Stupid Coder">
21-
<meta name="description"
22-
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community.">
23-
<meta name="keywords" content="Jenish MS | Jenish | MS Freelancer | Stupid Coder">
20+
<meta
21+
name="title"
22+
content="Jenish MS | Jenish | MS Freelancer | Stupid Coder"
23+
/>
24+
<meta
25+
name="description"
26+
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community."
27+
/>
28+
<meta
29+
name="keywords"
30+
content="Jenish MS | Jenish | MS Freelancer | Stupid Coder"
31+
/>
2432
<link rel="icon" type="image/png" href="/favicon.ico" />
25-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
26-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
27-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
28-
33+
<link
34+
rel="apple-touch-icon"
35+
sizes="180x180"
36+
href="/apple-touch-icon.png"
37+
/>
38+
<link
39+
rel="icon"
40+
type="image/png"
41+
sizes="32x32"
42+
href="/favicon-32x32.png"
43+
/>
44+
<link
45+
rel="icon"
46+
type="image/png"
47+
sizes="16x16"
48+
href="/favicon-16x16.png"
49+
/>
50+
2951
<!-- Open Graph / Facebook -->
30-
<meta property="og:type" content="website">
31-
<meta property="og:url" content="https://jenishms.github.io/">
32-
<meta property="og:title" content="Jenish MS | Jenish | Jenish MS Freelancer | Stupid Coder">
33-
<meta property="og:description"
34-
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community.">
35-
<meta property="og:image" content="https://jenishms.github.io/images/Jenish MS.jpg">
52+
<meta property="og:type" content="website" />
53+
<meta property="og:url" content="https://jenishms.github.io/" />
54+
<meta
55+
property="og:title"
56+
content="Jenish MS | Jenish | Jenish MS Freelancer | Stupid Coder"
57+
/>
58+
<meta
59+
property="og:description"
60+
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community."
61+
/>
62+
<meta
63+
property="og:image"
64+
content="https://jenishms.github.io/images/Jenish MS.jpg"
65+
/>
3666

3767
<!-- Twitter -->
38-
<meta property="twitter:card" content="summary_large_image">
39-
<meta property="twitter:url" content="https://jenishms.github.io/">
40-
<meta property="twitter:title" content="Jenish MS | Jenish | MS Freelancer | Stupid Coder">
41-
<meta property="twitter:description"
42-
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community.">
43-
<meta property="twitter:image" content="https://jenishms.github.io/images/Jenish MS.jpg">
68+
<meta property="twitter:card" content="summary_large_image" />
69+
<meta property="twitter:url" content="https://jenishms.github.io/" />
70+
<meta
71+
property="twitter:title"
72+
content="Jenish MS | Jenish | MS Freelancer | Stupid Coder"
73+
/>
74+
<meta
75+
property="twitter:description"
76+
content="As an Energetic Software Engineer with over 5 years of experience, I specialize in App development and Full-Stack development. I possess a tenacious attitude, continuously seeking opportunities for personal growth and skill enhancement to consistently evolve and excel in my craft. Additionally, I actively contribute to Open-Source projects, aiming to foster collaborative innovation within the software development community."
77+
/>
78+
<meta
79+
property="twitter:image"
80+
content="https://jenishms.github.io/images/Jenish MS.jpg"
81+
/>
4482

4583
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
4684

47-
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-126730401-1"></script>
85+
<script
86+
async
87+
src="https://www.googletagmanager.com/gtag/js?id=UA-126730401-1"
88+
></script>
4889
<script is:inline>
4990
window.dataLayer = window.dataLayer || [];
50-
function gtag() { dataLayer.push(arguments); }
51-
gtag('js', new Date());
91+
function gtag() {
92+
dataLayer.push(arguments);
93+
}
94+
gtag("js", new Date());
95+
96+
gtag("config", "UA-126730401-1");
97+
</script>
98+
<script
99+
is:inline
100+
data-ad-client="ca-pub-9793838838410328"
101+
async
102+
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
103+
></script>
52104

53-
gtag('config', 'UA-126730401-1');
105+
<script type="text/javascript">
106+
(function (c, l, a, r, i, t, y) {
107+
c[a] =
108+
c[a] ||
109+
function () {
110+
(c[a].q = c[a].q || []).push(arguments);
111+
};
112+
t = l.createElement(r);
113+
t.async = 1;
114+
t.src = "https://www.clarity.ms/tag/" + i;
115+
y = l.getElementsByTagName(r)[0];
116+
y.parentNode.insertBefore(t, y);
117+
})(window, document, "clarity", "script", "ncyy8qyq2m");
54118
</script>
55-
<script is:inline data-ad-client="ca-pub-9793838838410328" async
56-
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> --!>
57119
</head>
58120
<body>
59121
<slot />
60122
<Footer />
61123
</body>
62-
</html>
124+
</html>
63125

64126
<style is:global>
65127
:root {
66128
--accent: 124, 58, 237;
67-
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), #da62c4 30%, white 60%);
129+
--accent-gradient: linear-gradient(
130+
45deg,
131+
rgb(var(--accent)),
132+
#da62c4 30%,
133+
white 60%
134+
);
68135
}
69136
html {
70137
font-family: system-ui, sans-serif;
71-
background-color: #F6F6F6;
138+
background-color: #f6f6f6;
72139
}
73140
code {
74-
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
75-
Bitstream Vera Sans Mono, Courier New, monospace;
141+
font-family: Menlo, Monaco, Lucida Console, Liberation Mono,
142+
DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
76143
}
77144
body {
78145
background-color: #121519;
79146
margin: unset;
80147
min-height: 100vh;
81-
color: #F6F6F6;
148+
color: #f6f6f6;
82149
}
83150
</style>

0 commit comments

Comments
 (0)