From 75057a2a8fec51b8dbf221f3121f3727de0680c1 Mon Sep 17 00:00:00 2001 From: Aylur Date: Sun, 22 Sep 2024 00:31:39 +0000 Subject: docs: add icon --- docs/index.md | 25 +++++++++++++---- docs/public/favicon.ico | Bin 270398 -> 0 bytes docs/public/front-image.png | Bin 138489 -> 0 bytes docs/public/icon.svg | 66 ++++++++++++++++++++++++++++++++++++++++++++ docs/vitepress.config.ts | 10 +++++-- docs/vitepress.theme.css | 2 +- 6 files changed, 93 insertions(+), 10 deletions(-) delete mode 100644 docs/public/favicon.ico delete mode 100644 docs/public/front-image.png create mode 100644 docs/public/icon.svg diff --git a/docs/index.md b/docs/index.md index 2b80d9e..df4fea5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,9 +4,9 @@ pageClass: home-page hero: name: "Astal" - text: "Library and Framework for building Desktop Shells" - tagline: "The best way to make beautiful and functional wayland widgets!" - image: /front-image.png + text: "Create Beautiful Widgets With Ease" + tagline: "The Framework to Craft Desktop Shells and beautiful functional Wayland Widgets with GTK!" + image: /icon.svg actions: - theme: brand text: What is Astal? @@ -35,13 +35,14 @@ import Showcases from './showcases/Showcases.vue' - diff --git a/docs/public/favicon.ico b/docs/public/favicon.ico deleted file mode 100644 index fc02738..0000000 Binary files a/docs/public/favicon.ico and /dev/null differ diff --git a/docs/public/front-image.png b/docs/public/front-image.png deleted file mode 100644 index 0fbfcca..0000000 Binary files a/docs/public/front-image.png and /dev/null differ diff --git a/docs/public/icon.svg b/docs/public/icon.svg new file mode 100644 index 0000000..50140b4 --- /dev/null +++ b/docs/public/icon.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/vitepress.config.ts b/docs/vitepress.config.ts index 455020f..aa6aae2 100644 --- a/docs/vitepress.config.ts +++ b/docs/vitepress.config.ts @@ -16,12 +16,16 @@ export default defineConfig({ ignoreDeadLinks: true, // FIXME: head: [ - ["link", { rel: "icon", href: "/astal/favicon.ico" }], + ["link", { rel: "icon", href: "/astal/icon.svg" }], ], themeConfig: { - // logo: "", - // + logo: "/icon.svg", + + footer: { + message: 'Released under the LGPL v2.1 License', + copyright: 'Logo is created by VDawg' + }, nav: [{ text: "0.1.0", diff --git a/docs/vitepress.theme.css b/docs/vitepress.theme.css index 64d85a0..7bd694f 100644 --- a/docs/vitepress.theme.css +++ b/docs/vitepress.theme.css @@ -3,7 +3,7 @@ */ .VPNavBar .VPNavBarTitle span { - font-size: 1.4em; + font-size: 1.2em; font-weight: bold; background: linear-gradient(120deg, var(--vp-c-brand-3), var(--vp-c-brand-1)); -webkit-background-clip: text; -- cgit v1.2.3