Skip to content

Commit c03315a

Browse files
authored
Refactor HTML head for SEO and styling enhancements
Updated meta tags for improved SEO and added Google Fonts.
1 parent 58b724e commit c03315a

1 file changed

Lines changed: 52 additions & 44 deletions

File tree

index.html

Lines changed: 52 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,54 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
7-
<!-- Primary Meta Tags -->
8-
<title>Hacktoberfest 2025 | CoreX Nutrition</title>
9-
<meta name="description" content="Join CoreX Nutrition's Hacktoberfest 2025! Explore contributions, projects, and participate in the event." />
10-
<meta name="keywords" content="Hacktoberfest 2025, CoreX Nutrition, Open Source, Contributions" />
11-
<meta name="author" content="CoreX Nutrition" />
12-
<meta name="robots" content="index, follow" />
13-
<meta name="theme-color" content="#ffffff" />
14-
15-
<!-- Open Graph / Facebook -->
16-
<meta property="og:type" content="website" />
17-
<meta property="og:title" content="Hacktoberfest 2025 | CoreX Nutrition" />
18-
<meta property="og:description" content="Join CoreX Nutrition's Hacktoberfest 2025! Explore contributions, projects, and participate in the event." />
19-
<meta property="og:image" content="/images/og-image.png" />
20-
<meta property="og:url" content="https://yourwebsite.com/" />
21-
<meta property="og:site_name" content="CoreX Nutrition" />
22-
23-
<!-- Twitter -->
24-
<meta name="twitter:card" content="summary_large_image" />
25-
<meta name="twitter:title" content="Hacktoberfest 2025 | CoreX Nutrition" />
26-
<meta name="twitter:description" content="Join CoreX Nutrition's Hacktoberfest 2025! Explore contributions, projects, and participate in the event." />
27-
<meta name="twitter:image" content="/images/og-image.png" />
28-
29-
<!-- Favicon & Icons -->
30-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
31-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
32-
<link rel="shortcut icon" href="/favicon.ico" />
33-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
34-
35-
<!-- Manifest for PWA -->
36-
<link rel="manifest" href="/manifest.json" />
37-
38-
<!-- Canonical URL -->
39-
<link rel="canonical" href="https://yourwebsite.com/" />
40-
41-
</head>
42-
<body>
43-
<div id="root"></div>
44-
<script type="module" src="/src/main.jsx"></script>
45-
</body>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<!-- Primary Meta Tags -->
8+
<title>Hacktoberfest 2025 | CoreX Nutrition</title>
9+
<meta name="description" content="Join CoreX Nutrition's Hacktoberfest 2025! Contribute to exciting projects, enhance your skills, and be part of the open-source community." />
10+
<meta name="keywords" content="Hacktoberfest 2025, CoreX Nutrition, Open Source, Contributions, Community" />
11+
<meta name="author" content="CoreX Nutrition" />
12+
<meta name="robots" content="index, follow" />
13+
<meta name="theme-color" content="#1e3c72" />
14+
15+
<!-- Open Graph / Facebook -->
16+
<meta property="og:type" content="website" />
17+
<meta property="og:title" content="Hacktoberfest 2025 | CoreX Nutrition" />
18+
<meta property="og:description" content="Join CoreX Nutrition's Hacktoberfest 2025! Contribute to exciting projects and participate in the open-source event." />
19+
<meta property="og:image" content="/images/og-image.png" />
20+
<meta property="og:url" content="https://yourwebsite.com/" />
21+
<meta property="og:site_name" content="CoreX Nutrition" />
22+
23+
<!-- Twitter -->
24+
<meta name="twitter:card" content="summary_large_image" />
25+
<meta name="twitter:title" content="Hacktoberfest 2025 | CoreX Nutrition" />
26+
<meta name="twitter:description" content="Join CoreX Nutrition's Hacktoberfest 2025! Contribute to exciting projects and participate in the open-source event." />
27+
<meta name="twitter:image" content="/images/og-image.png" />
28+
29+
<!-- Favicon & Icons -->
30+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
31+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
32+
<link rel="shortcut icon" href="/favicon.ico" />
33+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
34+
35+
<!-- Manifest for PWA -->
36+
<link rel="manifest" href="/manifest.json" />
37+
38+
<!-- Canonical URL -->
39+
<link rel="canonical" href="https://yourwebsite.com/" />
40+
41+
<!-- Google Fonts -->
42+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
43+
44+
<!-- Optional Global Styles -->
45+
<link rel="stylesheet" href="/assets/css/global.css">
46+
47+
</head>
48+
<body>
49+
<div id="root"></div>
50+
51+
<!-- Main JS Module -->
52+
<script type="module" src="/src/main.jsx"></script>
53+
</body>
4654
</html>

0 commit comments

Comments
 (0)