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/src/components/base/Footer.astro | 6 +++--- apps/website/src/pages/projects/oneconfig.astro | 2 +- apps/website/src/types/Config.d.ts | 16 +++++++++++----- 3 files changed, 15 insertions(+), 9 deletions(-) (limited to 'apps/website/src') 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