diff --git a/packages/react/src/components/about/ContactList.tsx b/packages/react/src/components/about/ContactList.tsx index fd3511135..36b8ddf4c 100644 --- a/packages/react/src/components/about/ContactList.tsx +++ b/packages/react/src/components/about/ContactList.tsx @@ -3,10 +3,10 @@ import { AboutHeading } from "@/components/about/Heading"; import { useTranslation } from "react-i18next"; import { Link } from "react-router-dom"; -export function ContactList () { +export function ContactList() { const { t } = useTranslation(); - return ( + return (
{t("about.contact.discord")} @@ -41,4 +41,4 @@ export function ContactList () {
); -} \ No newline at end of file +} diff --git a/packages/react/src/components/about/Description.tsx b/packages/react/src/components/about/Description.tsx index 6a1e1fd02..6b3381d58 100644 --- a/packages/react/src/components/about/Description.tsx +++ b/packages/react/src/components/about/Description.tsx @@ -1,9 +1,16 @@ import { cn } from "@/lib/utils"; import { DetailedHTMLProps, HTMLAttributes } from "react"; -export function AboutDescription (props: DetailedHTMLProps, HTMLParagraphElement>) { - - return ( -

- ) -} \ No newline at end of file +export function AboutDescription( + props: DetailedHTMLProps< + HTMLAttributes, + HTMLParagraphElement + >, +) { + return ( +

+ ); +} diff --git a/packages/react/src/components/about/Heading.tsx b/packages/react/src/components/about/Heading.tsx index 61aae6217..60248bf16 100644 --- a/packages/react/src/components/about/Heading.tsx +++ b/packages/react/src/components/about/Heading.tsx @@ -1,9 +1,19 @@ import { cn } from "@/lib/utils"; import { DetailedHTMLProps, HTMLAttributes } from "react"; -export function AboutHeading (props: DetailedHTMLProps, HTMLHeadingElement>) { - - return ( -

- ) -} \ No newline at end of file +export function AboutHeading( + props: DetailedHTMLProps< + HTMLAttributes, + HTMLHeadingElement + >, +) { + return ( +

+ ); +} diff --git a/packages/react/src/components/about/QuickLink.tsx b/packages/react/src/components/about/QuickLink.tsx index 5b042922d..8e04c2a00 100644 --- a/packages/react/src/components/about/QuickLink.tsx +++ b/packages/react/src/components/about/QuickLink.tsx @@ -17,7 +17,7 @@ export interface QuickLinkProps { export function QuickLink({ className, icon, label, href }: QuickLinkProps) { return ( -