updated the readme to document the config
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s

This commit is contained in:
Lee
2023-07-09 19:28:50 +01:00
parent a23cb56990
commit 82a9d8ab54
3 changed files with 86 additions and 5 deletions

View File

@ -8,7 +8,7 @@ config.autoAddCss = false;
const inter = Inter({ subsets: ["latin"] });
export const metadata = Config.metadata;
export const metadata = Config.metadata; // Site metadata from the config
export default function RootLayout({
children,

View File

@ -6,11 +6,11 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import Image from "next/image";
import Config from "../../config.json";
library.add(fab, far, fas);
library.add(fab, far, fas); // Loading in the icons from FontAwesome
export default function Home() {
const { background, infoCard, avatar, name, links, options, description } =
Config;
Config; // All of the settings pulled from the config file
return (
<>