|
1 | 1 | --- |
2 | 2 | const { title = "Dev Encyclopedia", ...props } = Astro.props |
3 | 3 | --- |
4 | | - |
5 | 4 | <!-- Common meta tags --> |
6 | | -<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
7 | | -<meta name="title" content={title} /> |
8 | | -<meta |
9 | | - name="description" |
10 | | - content="Discover concise explanations and samples for tech terms and concepts in the Dev Encyclopedia. Find everything you need for development, all in one place." |
11 | | -/> |
12 | | -<meta |
13 | | - name="keywords" |
14 | | - content="dev encyclopedia,developer encyclopedia,developer dictionary,developer resources,developer tools,software resources,programming resources,programming terms,tech terms" |
15 | | -/> |
16 | | -<meta name="robots" content="index,follow" /> |
17 | | -<meta name="language" content="en" /> |
18 | | -<meta name="author" content="Chenuli Jayasinghe" /> |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | +<meta name="title" content="DevPedia | Open-Source Developer Reference"> |
| 7 | +<meta |
| 8 | + name="description" |
| 9 | + content="400+ programming terms explained clearly. Open-source tech dictionary with category filters for frontend, backend, DevOps, and CS fundamentals. Community-maintained knowledge base."> |
| 10 | +<meta |
| 11 | + name="keywords" |
| 12 | + content="open source programming dictionary, coding glossary, developer reference, tech terminology, frontend concepts, backend concepts, DevOps terms, computer science basics, GitHub knowledge base"> |
| 13 | +<meta name="robots" content="index, follow"> |
| 14 | +<meta name="language" content="en"> |
| 15 | +<meta name="author" content="Chenuli Jayasinghe"> |
| 16 | + |
| 17 | +<!-- Canonical URL --> |
| 18 | +<link rel="canonical" href="https://devpedia.dev" /> |
| 19 | + |
| 20 | +<!-- Open Graph --> |
| 21 | +<meta property="og:type" content="website"> |
| 22 | +<meta property="og:url" content="https://devpedia.dev"> |
| 23 | + |
| 24 | +<meta property="og:title" content="Dev Encyclopedia | A dictionary for programmers"> |
| 25 | +<meta |
| 26 | + property="og:description" |
| 27 | + content="Community-driven encyclopedia for programmers with 400+ terms + category filters. Learn about programming concepts and tech jargon in Plain English"> |
| 28 | +<meta property="og:image" content="https://i.ibb.co/nMwVhk7c/social-media-cover.png"> |
| 29 | +<meta property="og:image:width" content="1200"> |
| 30 | +<meta property="og:image:height" content="630"> |
| 31 | + |
| 32 | +<!-- Structured Data --> |
| 33 | +<script type="application/ld+json"> |
| 34 | +{ |
| 35 | + "@context": "https://schema.org", |
| 36 | + "@type": "WebSite", |
| 37 | + "name": "Dev Encyclopedia", |
| 38 | + "url": "https://devpedia.pages.dev", |
| 39 | + "description": "A dictionary for programmers", |
| 40 | + "license": "https://github.com/Buzzpy/Dev-Encyclopedia/blob/develop/LICENSE", |
| 41 | + "isAccessibleForFree": true, |
| 42 | + "keywords": "programmer dictionary, dev encyclopedia, devpedia, programming, development, glossary, open source, technical terms, programmer encyclopedia", |
| 43 | + "publisher": { |
| 44 | + "@type": "Organization", |
| 45 | + "name": "Programming and Doodles", |
| 46 | + "founder": "Chenuli Jayasinghe", |
| 47 | + "foundingDate": "2024", |
| 48 | + "email": "chenuli@devpedia.dev", |
| 49 | + "sameAs": "https://github.com/Buzzpy" |
| 50 | + } |
| 51 | +} |
| 52 | +</script> |
19 | 53 |
|
20 | | -<!-- Open Graph tags --> |
21 | | -<meta property="og:title" content="Dev Encyclopedia" /> |
22 | | -<meta property="og:type" content="website" /> |
23 | | -<meta property="og:url" content="https://devpedia.dev/" /> |
24 | | -<meta |
25 | | - property="og:description" |
26 | | - content="Discover concise explanations and samples for tech terms and concepts in the Dev Encyclopedia. Find everything you need for development, all in one place." |
27 | | -/> |
28 | | -<meta property="og:image" content="" /> |
29 | | -<meta property="og:image:alt" content="" /> |
| 54 | +<!-- Footer Microdata --> |
| 55 | +<script type="application/ld+json"> |
| 56 | +{ |
| 57 | + "@context": "https://schema.org", |
| 58 | + "@type": "WPFooter", |
| 59 | + "copyrightHolder": { |
| 60 | + "@type": "Organization", |
| 61 | + "name": "Programming and Doodles", |
| 62 | + "copyrightYear": "2025" |
| 63 | + }, |
| 64 | + "copyrightNotice": "Content available under CC BY-SA 4.0 license" |
| 65 | +} |
| 66 | +</script> |
0 commit comments