Skip to content

Commit a05880e

Browse files
committed
feat: Update Astro configuration for YarpDotCloud, add logo, and enhance social links. Introduce new post on Rangency and remove outdated example reference.
1 parent f080542 commit a05880e

4 files changed

Lines changed: 20717 additions & 14 deletions

File tree

astro.config.mjs

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,32 @@ import starlightBlog from 'starlight-blog';
77
export default defineConfig({
88
integrations: [
99
starlight({
10-
title: 'JibbsBlog',
10+
title: 'YarpDotCloud',
1111
plugins: [
1212
starlightBlog(),
1313
],
14-
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' }],
14+
site: 'https://www.yarp.cloud',
15+
// Add logo
16+
logo: {
17+
src: './src/assets/yarpdotcloudpokemonlogo.svg',
18+
},
19+
social: [
20+
{ icon: 'github', label: 'GitHub', href: 'https://github.com/jibbscript' },
21+
{ icon: 'linkedin', label: 'LinkedIn', href: 'https://linkedin.com/in/gibran.iqbal' },
22+
{ icon: 'email', label: 'Email', href: 'mailto:giqbal@gibraniq.com' },
23+
],
1524
sidebar: [
1625
{
1726
label: 'Posts',
1827
items: [
1928
// Each item here is one entry in the navigation menu.
2029
{ label: 'Rangency', slug: 'posts/rangency' },
30+
{ label: 'FedRAMP Data Mesh Reference Architecture', slug: 'posts/fedramp-datamesh' },
31+
{ label: 'YarpDotCloud', slug: 'posts/yarpdotcloud' },
2132
],
2233
},
2334
],
2435
,
2536
}),
2637
],
2738
});
28-

0 commit comments

Comments
 (0)