@@ -54,17 +54,17 @@ export default defineConfig({
5454 [ "meta" , { property : "og:url" , content : SITE_URL } ] ,
5555 [ "meta" , { property : "og:title" , content : SITE_NAME } ] ,
5656 [ "meta" , { property : "og:description" , content : SITE_DESCRIPTION } ] ,
57- [ "meta" , { property : "og:image" , content : `${ SITE_URL } /cover .png` } ] ,
57+ [ "meta" , { property : "og:image" , content : `${ SITE_URL } /loader-thumbnail .png` } ] ,
5858 [ "meta" , { property : "og:image:width" , content : "1200" } ] ,
5959 [ "meta" , { property : "og:image:height" , content : "630" } ] ,
60- [ "meta" , { property : "og:image:alt" , content : "loaders.zig - High-performance terminal loading indicators for Zig" } ] ,
60+ [ "meta" , { property : "og:image:alt" , content : "loaders.zig - High-performance terminal loading indicators and progress bars for Zig" } ] ,
6161 [ "meta" , { property : "og:site_name" , content : SITE_NAME } ] ,
6262 [ "meta" , { property : "og:locale" , content : "en_US" } ] ,
6363 [ "meta" , { name : "twitter:card" , content : "summary_large_image" } ] ,
6464 [ "meta" , { name : "twitter:url" , content : SITE_URL } ] ,
6565 [ "meta" , { name : "twitter:title" , content : SITE_NAME } ] ,
6666 [ "meta" , { name : "twitter:description" , content : SITE_DESCRIPTION } ] ,
67- [ "meta" , { name : "twitter:image" , content : `${ SITE_URL } /cover .png` } ] ,
67+ [ "meta" , { name : "twitter:image" , content : `${ SITE_URL } /loader-thumbnail .png` } ] ,
6868 [ "meta" , { name : "twitter:creator" , content : "@muhammadfiaz_" } ] ,
6969
7070 [ "link" , { rel : "icon" , href : "/loaders.zig/favicon.ico" } ] ,
@@ -164,6 +164,7 @@ gtag('config', '${GA_ID}');`,
164164 { text : "Home" , link : "/" } ,
165165 { text : "Guide" , link : "/guide/" } ,
166166 { text : "API" , link : "/api/" } ,
167+ { text : "Examples" , link : "/examples/" } ,
167168 ] ,
168169
169170 sidebar : [
@@ -172,6 +173,7 @@ gtag('config', '${GA_ID}');`,
172173 items : [
173174 { text : "Guide Overview" , link : "/guide/" } ,
174175 { text : "API Reference" , link : "/api/" } ,
176+ { text : "Examples" , link : "/examples/" } ,
175177 ] ,
176178 } ,
177179 {
@@ -187,6 +189,27 @@ gtag('config', '${GA_ID}');`,
187189 { text : "Advanced" , link : "/guide/advanced" } ,
188190 ] ,
189191 } ,
192+ {
193+ text : "Examples" ,
194+ items : [
195+ { text : "Overview" , link : "/examples/" } ,
196+ { text : "Basic Bar" , link : "/examples/01-basic-bar" } ,
197+ { text : "Basic Bar (100)" , link : "/examples/basic-bar" } ,
198+ { text : "Styled Bar" , link : "/examples/02-styled-bar" } ,
199+ { text : "Custom Style" , link : "/examples/custom-style" } ,
200+ { text : "Themed Bar" , link : "/examples/themed-bar" } ,
201+ { text : "ETA and Rate" , link : "/examples/eta-and-rate" } ,
202+ { text : "Download Simulation" , link : "/examples/download-simulation" } ,
203+ { text : "Advanced Options" , link : "/examples/advanced-options" } ,
204+ { text : "Custom Template" , link : "/examples/custom-template" } ,
205+ { text : "Nested Bars" , link : "/examples/nested-bars" } ,
206+ { text : "Spinner" , link : "/examples/spinner" } ,
207+ { text : "Multi Spinner" , link : "/examples/multi-spinner" } ,
208+ { text : "Multi Progress" , link : "/examples/multi-progress" } ,
209+ { text : "Iterator Wrap" , link : "/examples/iterator-wrap" } ,
210+ { text : "Animations" , link : "/examples/animations" } ,
211+ ] ,
212+ } ,
190213 ] ,
191214
192215 socialLinks : [
@@ -195,7 +218,7 @@ gtag('config', '${GA_ID}');`,
195218
196219 footer : {
197220 message : "Released under the MIT License." ,
198- copyright : `Copyright © 2025 -${ new Date ( ) . getFullYear ( ) } Muhammad Fiaz` ,
221+ copyright : `Copyright © 2026 -${ new Date ( ) . getFullYear ( ) } Muhammad Fiaz` ,
199222 } ,
200223
201224 search : {
@@ -246,7 +269,7 @@ gtag('config', '${GA_ID}');`,
246269 [ "meta" , { name : "description" , content : pageDescription } ] ,
247270 [ "meta" , { name : "twitter:title" , content : `${ pageTitle } | ${ SITE_NAME } ` } ] ,
248271 [ "meta" , { name : "twitter:description" , content : pageDescription } ] ,
249- [ "meta" , { name : "twitter:image" , content : `${ SITE_URL } /cover .png` } ] ,
272+ [ "meta" , { name : "twitter:image" , content : `${ SITE_URL } /loader-thumbnail .png` } ] ,
250273 ) ;
251274
252275 if ( pageData . frontmatter . description ) {
@@ -294,7 +317,7 @@ gtag('config', '${GA_ID}');`,
294317 name : isHome ? SITE_NAME : pageTitle ,
295318 description : pageDescription ,
296319 url : canonicalUrl ,
297- image : `${ SITE_URL } /cover .png` ,
320+ image : `${ SITE_URL } /loader-thumbnail .png` ,
298321 author : authorSchema ,
299322 publisher : {
300323 "@type" : "Organization" ,
@@ -334,7 +357,7 @@ gtag('config', '${GA_ID}');`,
334357 "@type" : "WebPage" ,
335358 "@id" : canonicalUrl ,
336359 } ,
337- datePublished : "2025 -01-01T00:00:00Z" ,
360+ datePublished : "2026 -01-01T00:00:00Z" ,
338361 dateModified : lastUpdated ,
339362 } ) ;
340363 }
0 commit comments