Skip to content

Commit e758cbf

Browse files
Add HCS web properties (azurelocal.cloud, thisismydemo.cloud) to About page and footer
1 parent 796d1d8 commit e758cbf

2 files changed

Lines changed: 136 additions & 0 deletions

File tree

src/navigation.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,15 @@ export const footerData = {
5151
{ text: 'Community', href: getPermalink('/community') },
5252
],
5353
},
54+
{
55+
title: 'Our Sites',
56+
links: [
57+
{ text: 'azurelocal.cloud', href: 'https://azurelocal.cloud' },
58+
{ text: 'thisismydemo.cloud', href: 'https://thisismydemo.cloud' },
59+
{ text: 'GitHub: AzureLocal', href: 'https://github.com/AzureLocal' },
60+
{ text: 'GitHub: thisismydemo', href: 'https://github.com/thisismydemo' },
61+
],
62+
},
5463
],
5564
secondaryLinks: [
5665
{ text: 'Terms', href: getPermalink('/legal') },

src/pages/about.astro

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,133 @@ const metadata = {
137137
]}
138138
/>
139139

140+
<!-- Content Widget - Web Properties: azurelocal.cloud **************** -->
141+
142+
<Content
143+
isReversed
144+
tagline="Our Web Properties"
145+
title="azurelocal.cloud"
146+
subtitle="The dedicated Azure Local resource hub — tools, guides, and community projects."
147+
items={[
148+
{
149+
title: 'Azure Local SOFS FSLogix',
150+
description:
151+
'Scale-Out File Server with FSLogix profile container support for Azure Local deployments.',
152+
icon: 'tabler:folders',
153+
},
154+
{
155+
title: 'Azure Local AVD',
156+
description:
157+
'Azure Virtual Desktop on Azure Local — deployment automation, image management, and hybrid AVD patterns.',
158+
icon: 'tabler:device-desktop',
159+
},
160+
{
161+
title: 'Azure Local Load Tools',
162+
description:
163+
'Performance testing and load simulation tools purpose-built for Azure Local clusters.',
164+
icon: 'tabler:gauge',
165+
},
166+
{
167+
title: 'Azure Local VM Conversion Toolkit',
168+
description:
169+
'Convert and migrate virtual machines to Azure Local — streamlined tooling for VMware, Hyper-V, and other sources.',
170+
icon: 'tabler:transform',
171+
},
172+
]}
173+
image={{
174+
src: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80',
175+
alt: 'Azure Local infrastructure',
176+
}}
177+
>
178+
<Fragment slot="content">
179+
<h3 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">azurelocal.cloud</h3>
180+
<p class="mb-4">
181+
A dedicated site for the Azure Local community — featuring open-source tools, deployment guides, and hands-on
182+
resources. New tools are being added weekly to the companion GitHub organization.
183+
</p>
184+
<div class="flex flex-wrap gap-3">
185+
<a
186+
href="https://azurelocal.cloud"
187+
target="_blank"
188+
rel="noopener noreferrer"
189+
class="btn btn-primary sm:w-auto"
190+
>
191+
Visit azurelocal.cloud
192+
</a>
193+
<a
194+
href="https://github.com/AzureLocal"
195+
target="_blank"
196+
rel="noopener noreferrer"
197+
class="btn sm:w-auto"
198+
>
199+
GitHub: AzureLocal
200+
</a>
201+
</div>
202+
</Fragment>
203+
204+
<Fragment slot="bg">
205+
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
206+
</Fragment>
207+
</Content>
208+
209+
<!-- Content Widget - Web Properties: thisismydemo.cloud **************** -->
210+
211+
<Content
212+
tagline="Our Web Properties"
213+
title="thisismydemo.cloud"
214+
subtitle="The blog and demo playground — real-world walkthroughs, lab notes, and community tools."
215+
items={[
216+
{
217+
title: 'Blog & Walkthroughs',
218+
description:
219+
'Technical blog posts, step-by-step guides, and real-world hybrid cloud scenarios from the field.',
220+
icon: 'tabler:notebook',
221+
},
222+
{
223+
title: 'Demo Resources',
224+
description:
225+
'Scripts, templates, and lab environments used in conference demos and training sessions.',
226+
icon: 'tabler:code',
227+
},
228+
{
229+
title: 'Community Tools',
230+
description:
231+
'Various open-source tools and utilities shared through the companion GitHub organization.',
232+
icon: 'tabler:tools',
233+
},
234+
]}
235+
image={{
236+
src: 'https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80',
237+
alt: 'Blog and demo site',
238+
}}
239+
>
240+
<Fragment slot="content">
241+
<h3 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">thisismydemo.cloud</h3>
242+
<p class="mb-4">
243+
A blog and demo site covering hybrid cloud topics, Azure infrastructure, and hands-on lab content. The companion
244+
GitHub organization hosts various tools and utilities shared with the community.
245+
</p>
246+
<div class="flex flex-wrap gap-3">
247+
<a
248+
href="https://thisismydemo.cloud"
249+
target="_blank"
250+
rel="noopener noreferrer"
251+
class="btn btn-primary sm:w-auto"
252+
>
253+
Visit thisismydemo.cloud
254+
</a>
255+
<a
256+
href="https://github.com/thisismydemo"
257+
target="_blank"
258+
rel="noopener noreferrer"
259+
class="btn sm:w-auto"
260+
>
261+
GitHub: thisismydemo
262+
</a>
263+
</div>
264+
</Fragment>
265+
</Content>
266+
140267
<!-- Stats Widget ****************** -->
141268

142269
<Stats

0 commit comments

Comments
 (0)