From a8b3db9c0344fb82796bad7fc1c3b1b7f20c3fe4 Mon Sep 17 00:00:00 2001 From: LynithDev <61880709+LynithDev@users.noreply.github.com> Date: Wed, 27 Dec 2023 10:14:04 +0100 Subject: Remove padding from oneconfig logo + update footer links --- apps/website/config.ts | 5 ++++ apps/website/public/media/oneconfig/logo_text.svg | 33 ++++++++++++++--------- apps/website/src/components/base/Footer.astro | 6 ++--- apps/website/src/pages/projects/oneconfig.astro | 2 +- apps/website/src/types/Config.d.ts | 16 +++++++---- 5 files changed, 40 insertions(+), 22 deletions(-) diff --git a/apps/website/config.ts b/apps/website/config.ts index 20da56f..0d45d76 100644 --- a/apps/website/config.ts +++ b/apps/website/config.ts @@ -3,6 +3,11 @@ import type { Config, NavbarDropdown, Project } from '@webtypes/Config'; export const configConst = { projects: getProjects(), logos: ['oneconfig.minimal', 'polyfrost.full', 'polyfrost.minimal', 'polyfrost.minimal_bg'], + socials: { + youtube: 'https://youtube.com/', + discord: 'https://discord.gg/', + github: 'https://github.com/Polyfrost', + }, navbar: { left: [ { diff --git a/apps/website/public/media/oneconfig/logo_text.svg b/apps/website/public/media/oneconfig/logo_text.svg index 0b27025..3c10fe4 100644 --- a/apps/website/public/media/oneconfig/logo_text.svg +++ b/apps/website/public/media/oneconfig/logo_text.svg @@ -1,13 +1,20 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/apps/website/src/components/base/Footer.astro b/apps/website/src/components/base/Footer.astro index 626ff0b..d41ef29 100644 --- a/apps/website/src/components/base/Footer.astro +++ b/apps/website/src/components/base/Footer.astro @@ -12,9 +12,9 @@ import Link from './Link.astro';

English, USA

{/* hardcoded for now, todo i18n */}
- - - + + +
diff --git a/apps/website/src/pages/projects/oneconfig.astro b/apps/website/src/pages/projects/oneconfig.astro index 885d2c6..147ea28 100644 --- a/apps/website/src/pages/projects/oneconfig.astro +++ b/apps/website/src/pages/projects/oneconfig.astro @@ -161,7 +161,7 @@ import { Code } from 'astro:components';
-
+
diff --git a/apps/website/src/types/Config.d.ts b/apps/website/src/types/Config.d.ts index f53967a..6ba2756 100644 --- a/apps/website/src/types/Config.d.ts +++ b/apps/website/src/types/Config.d.ts @@ -33,11 +33,17 @@ export interface FooterColumn { } export interface Config { - projects: Project[] - logos: string[] + projects: Project[], + logos: string[], + socials: { + youtube: string, + // twitter: string, + discord: string, + github: string, + }, navbar: { - left: NavbarElement[] - right: NavbarElement[] + left: NavbarElement[], + right: NavbarElement[], }, - footer: FooterColumn[] + footer: FooterColumn[], } -- cgit