|
1 | 1 | <!doctype html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta name="viewport" content="width=device-width" /> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
5 | 6 | <title><%= it.title %></title> |
6 | 7 | <link rel="icon" href="/favicon.png" /> |
| 8 | + <link rel="manifest" href="/manifest.json" /> |
| 9 | + <link rel="canonical" href="<%= it.url %>" /> |
7 | 10 | <link |
8 | 11 | rel="preload" |
9 | 12 | href="/font/Mona-Sans.woff2" |
|
12 | 15 | crossorigin="" |
13 | 16 | /> |
14 | 17 |
|
| 18 | + <!-- DNS Prefetch for external resources --> |
| 19 | + <link rel="dns-prefetch" href="//github.com" /> |
| 20 | + <link rel="dns-prefetch" href="//codesandbox.io" /> |
| 21 | + <link rel="dns-prefetch" href="//play.vuejs.org" /> |
| 22 | + <link rel="dns-prefetch" href="//svelte.dev" /> |
| 23 | + <link rel="dns-prefetch" href="//playground.solidjs.com" /> |
| 24 | + <link rel="dns-prefetch" href="//qwik.builder.io" /> |
| 25 | + <link rel="dns-prefetch" href="//lit.dev" /> |
| 26 | + <link rel="dns-prefetch" href="//ember-twiddle.com" /> |
| 27 | + <link rel="dns-prefetch" href="//markojs.com" /> |
| 28 | + <link rel="dns-prefetch" href="//stackblitz.com" /> |
| 29 | + <link rel="dns-prefetch" href="//www.ripplejs.com" /> |
| 30 | + |
| 31 | + <!-- Preconnect to critical external domains --> |
| 32 | + <link rel="preconnect" href="https://github.com" crossorigin /> |
| 33 | + <link rel="preconnect" href="https://codesandbox.io" crossorigin /> |
| 34 | + |
15 | 35 | <!-- Primary Meta Tags --> |
16 | 36 | <meta name="title" content="<%= it.title %>" /> |
17 | 37 | <meta name="description" content="<%= it.description %>" /> |
| 38 | + <meta name="keywords" content="<%= it.keywords %>" /> |
| 39 | + <meta name="author" content="Component Party" /> |
| 40 | + <meta |
| 41 | + name="robots" |
| 42 | + content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" |
| 43 | + /> |
| 44 | + <meta name="googlebot" content="index, follow" /> |
| 45 | + <meta name="bingbot" content="index, follow" /> |
18 | 46 |
|
19 | 47 | <!-- Open Graph / Facebook --> |
20 | 48 | <meta property="og:type" content="website" /> |
21 | 49 | <meta property="og:url" content="<%= it.url %>" /> |
22 | 50 | <meta property="og:title" content="<%= it.title %>" /> |
23 | 51 | <meta property="og:description" content="<%= it.description %>" /> |
24 | 52 | <meta property="og:image" content="<%= it.image %>" /> |
| 53 | + <meta property="og:image:width" content="1200" /> |
| 54 | + <meta property="og:image:height" content="630" /> |
| 55 | + <meta |
| 56 | + property="og:image:alt" |
| 57 | + content="<%= it.title %> - JavaScript Framework Comparison" |
| 58 | + /> |
| 59 | + <meta property="og:site_name" content="Component Party" /> |
| 60 | + <meta property="og:locale" content="en_US" /> |
25 | 61 |
|
26 | 62 | <!-- Twitter --> |
27 | 63 | <meta property="twitter:card" content="summary_large_image" /> |
28 | 64 | <meta property="twitter:url" content="<%= it.url %>" /> |
29 | 65 | <meta property="twitter:title" content="<%= it.title %>" /> |
30 | 66 | <meta property="twitter:description" content="<%= it.description %>" /> |
31 | 67 | <meta property="twitter:image" content="<%= it.image %>" /> |
| 68 | + <meta |
| 69 | + property="twitter:image:alt" |
| 70 | + content="<%= it.title %> - JavaScript Framework Comparison" |
| 71 | + /> |
| 72 | + <meta property="twitter:creator" content="@componentparty" /> |
| 73 | + <meta property="twitter:site" content="@componentparty" /> |
| 74 | + |
| 75 | + <!-- Additional SEO Meta Tags --> |
| 76 | + <meta name="theme-color" content="#111827" /> |
| 77 | + <meta name="msapplication-TileColor" content="#111827" /> |
| 78 | + <meta name="apple-mobile-web-app-capable" content="yes" /> |
| 79 | + <meta |
| 80 | + name="apple-mobile-web-app-status-bar-style" |
| 81 | + content="black-translucent" |
| 82 | + /> |
| 83 | + <meta name="apple-mobile-web-app-title" content="Component Party" /> |
| 84 | + <meta name="application-name" content="Component Party" /> |
| 85 | + <meta name="mobile-web-app-capable" content="yes" /> |
| 86 | + <meta name="format-detection" content="telephone=no" /> |
| 87 | + |
| 88 | + <!-- Structured Data (JSON-LD) --> |
| 89 | + <script type="application/ld+json"> |
| 90 | + { |
| 91 | + "@context": "https://schema.org", |
| 92 | + "@type": "WebApplication", |
| 93 | + "name": "Component Party", |
| 94 | + "description": "<%= it.description %>", |
| 95 | + "url": "<%= it.url %>", |
| 96 | + "applicationCategory": "DeveloperApplication", |
| 97 | + "operatingSystem": "Web Browser", |
| 98 | + "offers": { |
| 99 | + "@type": "Offer", |
| 100 | + "price": "0", |
| 101 | + "priceCurrency": "USD" |
| 102 | + }, |
| 103 | + "author": { |
| 104 | + "@type": "Organization", |
| 105 | + "name": "Component Party", |
| 106 | + "url": "https://component-party.dev" |
| 107 | + }, |
| 108 | + "publisher": { |
| 109 | + "@type": "Organization", |
| 110 | + "name": "Component Party", |
| 111 | + "url": "https://component-party.dev", |
| 112 | + "logo": { |
| 113 | + "@type": "ImageObject", |
| 114 | + "url": "https://component-party.dev/popper.svg" |
| 115 | + } |
| 116 | + }, |
| 117 | + "keywords": "<%= it.keywords %>", |
| 118 | + "inLanguage": "en-US", |
| 119 | + "isAccessibleForFree": true, |
| 120 | + "browserRequirements": "Requires JavaScript. Requires HTML5.", |
| 121 | + "softwareVersion": "2.0.0", |
| 122 | + "datePublished": "2024-01-01", |
| 123 | + "dateModified": "2024-12-01", |
| 124 | + "mainEntity": { |
| 125 | + "@type": "ItemList", |
| 126 | + "name": "JavaScript Frameworks Comparison", |
| 127 | + "description": "A comprehensive comparison of popular JavaScript frameworks and libraries", |
| 128 | + "numberOfItems": "<%= it.frameworkCount || '20+' %>", |
| 129 | + "itemListElement": [ |
| 130 | + { |
| 131 | + "@type": "SoftwareApplication", |
| 132 | + "name": "React", |
| 133 | + "description": "A JavaScript library for building user interfaces", |
| 134 | + "applicationCategory": "WebApplication", |
| 135 | + "operatingSystem": "Web Browser" |
| 136 | + }, |
| 137 | + { |
| 138 | + "@type": "SoftwareApplication", |
| 139 | + "name": "Vue.js", |
| 140 | + "description": "A progressive JavaScript framework for building user interfaces", |
| 141 | + "applicationCategory": "WebApplication", |
| 142 | + "operatingSystem": "Web Browser" |
| 143 | + }, |
| 144 | + { |
| 145 | + "@type": "SoftwareApplication", |
| 146 | + "name": "Angular", |
| 147 | + "description": "A platform and framework for building single-page client applications", |
| 148 | + "applicationCategory": "WebApplication", |
| 149 | + "operatingSystem": "Web Browser" |
| 150 | + }, |
| 151 | + { |
| 152 | + "@type": "SoftwareApplication", |
| 153 | + "name": "Svelte", |
| 154 | + "description": "A radical new approach to building user interfaces", |
| 155 | + "applicationCategory": "WebApplication", |
| 156 | + "operatingSystem": "Web Browser" |
| 157 | + } |
| 158 | + ] |
| 159 | + } |
| 160 | + } |
| 161 | + </script> |
| 162 | + |
32 | 163 | <style> |
33 | 164 | @font-face { |
34 | 165 | font-family: "Mona Sans"; |
|
0 commit comments