|
5 | 5 | <link rel="icon" type="image/png" href="/favicon.png" /> |
6 | 6 | <link rel="preload" href="/logo.svg" as="image" type="image/svg+xml" /> |
7 | 7 | <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> |
8 | 10 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
9 | 11 | <title>TJHSST Dev Club</title> |
10 | 12 | <!-- simple seo for search engines --> |
11 | 13 | <meta name="description" content="Thomas Jefferson High School for Science and Technology Developer Club - Learn programming, build projects, and connect with fellow developers." /> |
12 | 14 | <meta name="keywords" content="TJHSST Dev Club, Thomas Jefferson, programming, coding, development, computer science, web development, software engineering" /> |
13 | 15 | <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> |
14 | 58 | </head> |
15 | 59 | <body> |
16 | 60 | <div id="root"></div> |
|
0 commit comments