Skip to content

Commit e6244a3

Browse files
authored
Merge pull request #2 from TJHSST-Dev-Club/cursor/enhance-seo-and-metadata-for-project-be93
2 parents ffa6757 + 3e23db2 commit e6244a3

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

index.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,56 @@
55
<link rel="icon" type="image/png" href="/favicon.png" />
66
<link rel="preload" href="/logo.svg" as="image" type="image/svg+xml" />
77
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
8+
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
9+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
810
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
911
<title>TJHSST Dev Club</title>
1012
<!-- simple seo for search engines -->
1113
<meta name="description" content="Thomas Jefferson High School for Science and Technology Developer Club - Learn programming, build projects, and connect with fellow developers." />
1214
<meta name="keywords" content="TJHSST Dev Club, Thomas Jefferson, programming, coding, development, computer science, web development, software engineering" />
1315
<meta name="author" content="TJHSST Dev Club" />
16+
17+
<!-- canonical & robots -->
18+
<link rel="canonical" href="https://tjdev.club/" />
19+
<meta name="robots" content="index, follow" />
20+
<meta name="referrer" content="strict-origin-when-cross-origin" />
21+
22+
<!-- color scheme & PWA-friendly bits -->
23+
<meta name="color-scheme" content="dark light" />
24+
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
25+
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#111827" />
26+
27+
<!-- Open Graph -->
28+
<meta property="og:title" content="TJHSST Dev Club" />
29+
<meta property="og:description" content="Thomas Jefferson High School for Science and Technology Developer Club - Learn programming, build projects, and connect with fellow developers." />
30+
<meta property="og:type" content="website" />
31+
<meta property="og:url" content="https://tjdev.club/" />
32+
<meta property="og:site_name" content="TJHSST Dev Club" />
33+
<meta property="og:locale" content="en_US" />
34+
<meta property="og:image" content="https://tjdev.club/og-image.png" />
35+
<meta property="og:image:secure_url" content="https://tjdev.club/og-image.png" />
36+
<meta property="og:image:type" content="image/png" />
37+
<meta property="og:image:alt" content="TJHSST Dev Club logo" />
38+
39+
<!-- Twitter Cards -->
40+
<meta name="twitter:card" content="summary_large_image" />
41+
<meta name="twitter:title" content="TJHSST Dev Club" />
42+
<meta name="twitter:description" content="Thomas Jefferson High School for Science and Technology Developer Club -- Learn programming, build projects, and connect with fellow developers." />
43+
<meta name="twitter:image" content="https://tjdev.club/og-image.png" />
44+
45+
<!-- Structured Data: Organization -->
46+
<script type="application/ld+json">
47+
{
48+
"@context": "https://schema.org",
49+
"@type": "Organization",
50+
"name": "TJHSST Dev Club",
51+
"url": "https://tjdev.club/",
52+
"logo": "https://tjdev.club/og-image.png",
53+
"sameAs": [
54+
"https://discord.gg/sP3WVQRQPC"
55+
]
56+
}
57+
</script>
1458
</head>
1559
<body>
1660
<div id="root"></div>

public/og-image.png

88.2 KB
Loading

0 commit comments

Comments
 (0)