From 1ec972a8aad20605d28616b4f88781d6b7985021 Mon Sep 17 00:00:00 2001 From: Pauline Date: Tue, 26 Dec 2023 21:40:26 +0100 Subject: chore(lint): lint all files --- apps/website/config.ts | 54 ++++++++++++------------- apps/website/src/components/base/Footer.astro | 14 +++---- apps/website/src/components/base/Link.astro | 6 +-- apps/website/src/components/base/Section.astro | 3 +- apps/website/src/components/icons/Icon.astro | 7 ++-- apps/website/src/pages/projects/oneconfig.astro | 5 ++- apps/website/tailwind.config.ts | 6 +-- 7 files changed, 48 insertions(+), 47 deletions(-) diff --git a/apps/website/config.ts b/apps/website/config.ts index 8e4a47e..20da56f 100644 --- a/apps/website/config.ts +++ b/apps/website/config.ts @@ -26,57 +26,57 @@ export const configConst = { }, footer: [ { - header: "Products", + header: 'Products', links: [ { - text: "OneConfig", - url: "/projects/oneconfig", + text: 'OneConfig', + url: '/projects/oneconfig', }, { - text: "OneLauncher", - url: "/projects/onelauncher", + text: 'OneLauncher', + url: '/projects/onelauncher', }, - ] + ], }, { - header: "Organization", + header: 'Organization', links: [ { - text: "About us", - url: "/about", + text: 'About us', + url: '/about', }, { - text: "Branding", - url: "/branding", + text: 'Branding', + url: '/branding', }, { - text: "Contact us", - url: "/contact", + text: 'Contact us', + url: '/contact', }, { - text: "Documentation", - url: "/documentation", - } - ] + text: 'Documentation', + url: '/documentation', + }, + ], }, { - header: "Legal", + header: 'Legal', links: [ { - text: "Terms of service", - url: "/terms", + text: 'Terms of service', + url: '/terms', }, { - text: "Privacy policy", - url: "/privacy", + text: 'Privacy policy', + url: '/privacy', }, { - text: "Licenses", - url: "/licenses", + text: 'Licenses', + url: '/licenses', }, - ] - } - ] + ], + }, + ], } satisfies Config; function getProjects(): Project[] { diff --git a/apps/website/src/components/base/Footer.astro b/apps/website/src/components/base/Footer.astro index 39ae8d6..626ff0b 100644 --- a/apps/website/src/components/base/Footer.astro +++ b/apps/website/src/components/base/Footer.astro @@ -1,8 +1,8 @@ --- -import Icon from "@components/icons/Icon.astro"; -import Logo from "@components/logos/Logo.astro"; -import configConst from "@config"; -import Link from "./Link.astro"; +import Icon from '@components/icons/Icon.astro'; +import Logo from '@components/logos/Logo.astro'; +import configConst from '@config'; +import Link from './Link.astro'; ---