|
| 1 | +--- |
| 2 | +import { SITE } from 'astrowind:config'; |
| 3 | +
|
| 4 | +const siteUrl = SITE.site || 'https://www.hybridsolutions.cloud'; |
| 5 | +
|
| 6 | +const organizationSchema = { |
| 7 | + '@context': 'https://schema.org', |
| 8 | + '@type': 'LocalBusiness', |
| 9 | + '@id': `${siteUrl}/#organization`, |
| 10 | + name: 'Hybrid Cloud Solutions, LLC', |
| 11 | + url: siteUrl, |
| 12 | + logo: `${siteUrl}/_astro/logo-primary-800.png`, |
| 13 | + description: |
| 14 | + 'Microsoft hybrid cloud consulting, training, and architecture — specializing in Azure Local, Azure Arc, Hyper-V, and edge infrastructure.', |
| 15 | + foundingDate: '2023', |
| 16 | + areaServed: 'US', |
| 17 | + serviceType: ['Hybrid Cloud Consulting', 'Azure Architecture', 'Microsoft Training', 'Conference Speaking'], |
| 18 | + sameAs: [ |
| 19 | + 'https://twitter.com/countrycloudboy', |
| 20 | + 'https://youtube.com/@countrycloudboy', |
| 21 | + 'https://github.com/hybridsolutionscloud', |
| 22 | + 'https://www.linkedin.com/in/intcloudboy/', |
| 23 | + 'https://sessionize.com/kristopherjturner/', |
| 24 | + ], |
| 25 | + contactPoint: { |
| 26 | + '@type': 'ContactPoint', |
| 27 | + url: `${siteUrl}/contact`, |
| 28 | + contactType: 'customer service', |
| 29 | + }, |
| 30 | +}; |
| 31 | +
|
| 32 | +const personSchema = { |
| 33 | + '@context': 'https://schema.org', |
| 34 | + '@type': 'Person', |
| 35 | + name: 'Kristopher Turner', |
| 36 | + jobTitle: 'Founder & Principal Consultant', |
| 37 | + worksFor: { |
| 38 | + '@type': 'Organization', |
| 39 | + name: 'Hybrid Cloud Solutions, LLC', |
| 40 | + }, |
| 41 | + url: siteUrl, |
| 42 | + sameAs: [ |
| 43 | + 'https://twitter.com/countrycloudboy', |
| 44 | + 'https://youtube.com/@countrycloudboy', |
| 45 | + 'https://www.linkedin.com/in/intcloudboy/', |
| 46 | + 'https://sessionize.com/kristopherjturner/', |
| 47 | + 'https://mvp.microsoft.com/en-US/mvp/profile/76834ced-665a-e411-93f2-9cb65495d3c4', |
| 48 | + ], |
| 49 | + knowsAbout: [ |
| 50 | + 'Microsoft Azure', |
| 51 | + 'Azure Local', |
| 52 | + 'Azure Arc', |
| 53 | + 'Hyper-V', |
| 54 | + 'Azure Virtual Desktop', |
| 55 | + 'Hybrid Cloud Architecture', |
| 56 | + 'Windows Server', |
| 57 | + ], |
| 58 | + hasCredential: [ |
| 59 | + { |
| 60 | + '@type': 'EducationalOccupationalCredential', |
| 61 | + credentialCategory: 'certification', |
| 62 | + name: 'Microsoft Certified: Azure Solutions Architect Expert', |
| 63 | + }, |
| 64 | + { |
| 65 | + '@type': 'EducationalOccupationalCredential', |
| 66 | + credentialCategory: 'certification', |
| 67 | + name: 'Microsoft Certified: Cybersecurity Architect Expert', |
| 68 | + }, |
| 69 | + ], |
| 70 | +}; |
| 71 | +
|
| 72 | +const websiteSchema = { |
| 73 | + '@context': 'https://schema.org', |
| 74 | + '@type': 'WebSite', |
| 75 | + name: 'Hybrid Cloud Solutions', |
| 76 | + url: siteUrl, |
| 77 | + publisher: { |
| 78 | + '@id': `${siteUrl}/#organization`, |
| 79 | + }, |
| 80 | +}; |
| 81 | +--- |
| 82 | + |
| 83 | +<script type="application/ld+json" set:html={JSON.stringify(organizationSchema)} /> |
| 84 | +<script type="application/ld+json" set:html={JSON.stringify(personSchema)} /> |
| 85 | +<script type="application/ld+json" set:html={JSON.stringify(websiteSchema)} /> |
0 commit comments