From 9474dd7baae782fe086a180e7d84f6540adb918d Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Fri, 30 Jan 2026 18:52:08 -0700 Subject: [PATCH] Add account button and switch to font awesome fully --- src/app/components/AccountButton.tsx | 15 +++++++++++++++ src/app/components/DiscordButton.tsx | 2 +- src/app/components/HomeButton.tsx | 4 +++- src/app/layout.tsx | 4 ---- src/app/page.tsx | 2 ++ 5 files changed, 21 insertions(+), 6 deletions(-) create mode 100644 src/app/components/AccountButton.tsx diff --git a/src/app/components/AccountButton.tsx b/src/app/components/AccountButton.tsx new file mode 100644 index 0000000..3e511ef --- /dev/null +++ b/src/app/components/AccountButton.tsx @@ -0,0 +1,15 @@ +import { faUser } from '@fortawesome/free-regular-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import Link from 'next/link' + +export function AccountButton () { + return ( + <> +
+ + + +
+ + ) +} diff --git a/src/app/components/DiscordButton.tsx b/src/app/components/DiscordButton.tsx index b203c9b..40a4a7c 100644 --- a/src/app/components/DiscordButton.tsx +++ b/src/app/components/DiscordButton.tsx @@ -6,7 +6,7 @@ export function DiscordButton () { return ( <>
- +
diff --git a/src/app/components/HomeButton.tsx b/src/app/components/HomeButton.tsx index 5ed266f..255aaa0 100644 --- a/src/app/components/HomeButton.tsx +++ b/src/app/components/HomeButton.tsx @@ -1,3 +1,5 @@ +import { faHome } from '@fortawesome/free-regular-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import Link from 'next/link' export function HomeButton () { @@ -5,7 +7,7 @@ export function HomeButton () { <>
- home +
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe2e4ab..dcf9fb6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,10 +13,6 @@ export default function RootLayout ({ return ( - +

Lncvrt Games