generated from Fascinated/nextjs-13-template-with-tailwindcss
updated the readme to document the config
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s
All checks were successful
Publish Docker Image / docker (push) Successful in 1m44s
This commit is contained in:
@ -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,
|
||||
|
@ -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 (
|
||||
<>
|
||||
|
Reference in New Issue
Block a user