mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 14:02:40 +08:00

* init docs * add few categories * add more * update home * add blog * update favicon * fix few links and * untouch * untouch more * add some icons * add icons * move ggetting started at the top and collapse the rest * actually collapse * format * remove includes * more format * remove includes * move assets * add i18n * fix i18n * formatting * order * Prevent sidebar from making the page shake during load * Prevent sidebar from making the page shake during load * organize docs * fix link * expand a bit * add credits page * update all contributors file * remove underlines * add alternative * use html * lets get the first success build * add latest entry * remove example file * fix examples * more fixes * fix grammar * grammar * remove dupes * fix link * grammar * typo * typo * typo * Logo update. Minor changes. * update changelog * update changelog * rabbit is right --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
import type { StarlightBlogUserConfig } from "starlight-blog";
|
|
|
|
type Authors = NonNullable<StarlightBlogUserConfig>["authors"];
|
|
export const authors: Authors = {
|
|
leaanthony: {
|
|
name: "Lea Anthony",
|
|
title: "Maintainer of Wails",
|
|
url: "https://github.com/leaanthony",
|
|
picture: "https://github.com/leaanthony.png",
|
|
},
|
|
};
|