generated from Fascinated/nextjs-13-template-with-tailwindcss
update all depends
All checks were successful
Publish Docker Image / docker (push) Successful in 1m49s
All checks were successful
Publish Docker Image / docker (push) Successful in 1m49s
This commit is contained in:
parent
42f631da08
commit
81e19866ff
8012
package-lock.json
generated
8012
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
38
package.json
38
package.json
@ -10,26 +10,26 @@
|
||||
"update-depends": "npm-check -u"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
||||
"@fortawesome/react-fontawesome": "^0.2.0",
|
||||
"@types/node": "^20.8.6",
|
||||
"@types/react": "^18.2.28",
|
||||
"@types/react-dom": "^18.2.13",
|
||||
"autoprefixer": "^10.4.16",
|
||||
"eslint": "^8.51.0",
|
||||
"eslint-config-next": "^13.5.4",
|
||||
"next": "^13.5.4",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.6.0",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.6.0",
|
||||
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
||||
"@fortawesome/react-fontawesome": "^0.2.2",
|
||||
"@types/node": "^22.5.1",
|
||||
"@types/react": "^18.3.4",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"eslint": "^9.9.1",
|
||||
"eslint-config-next": "^14.2.7",
|
||||
"next": "^14.2.7",
|
||||
"next-plugin-yaml": "^1.0.1",
|
||||
"npm-check": "^6.0.1",
|
||||
"postcss": "^8.4.31",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"sharp": "^0.33.0",
|
||||
"tailwindcss": "^3.3.3",
|
||||
"typescript": "^5.2.2",
|
||||
"use-lanyard": "^1.4.4"
|
||||
"postcss": "^8.4.41",
|
||||
"react": "18.3.1",
|
||||
"react-dom": "18.3.1",
|
||||
"sharp": "^0.33.5",
|
||||
"tailwindcss": "^3.4.10",
|
||||
"typescript": "^5.5.4",
|
||||
"use-lanyard": "^1.5.2"
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ import Image from "next/image";
|
||||
import { Fragment } from "react";
|
||||
import { useLanyardWS } from "use-lanyard";
|
||||
|
||||
const Config: Config = require("../../../config.yml") as any;
|
||||
const config: Config = require("../../../config.yml") as any;
|
||||
|
||||
function LanyardWrapper(props: { children: any }) {
|
||||
return <Fragment>{props.children}</Fragment>;
|
||||
@ -13,7 +13,7 @@ function LanyardWrapper(props: { children: any }) {
|
||||
|
||||
export default function Avatar(props: any) {
|
||||
const { avatar } = props;
|
||||
const { discord }: any = Config;
|
||||
const { discord }: any = config;
|
||||
|
||||
return (
|
||||
<div className="relative inline-block">
|
||||
|
@ -1,22 +1,18 @@
|
||||
import { Config } from "@/src/types/config";
|
||||
import { config } from "@fortawesome/fontawesome-svg-core";
|
||||
import { config as fontAwesomeConfig } from "@fortawesome/fontawesome-svg-core";
|
||||
import "@fortawesome/fontawesome-svg-core/styles.css";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import {ReactNode} from "react";
|
||||
import { ReactNode } from "react";
|
||||
|
||||
const Config: Config = require("../../config.yml") as any;
|
||||
config.autoAddCss = false;
|
||||
const config: Config = require("../../config.yml") as any;
|
||||
fontAwesomeConfig.autoAddCss = false;
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata = Config.metadata; // Site metadata from the config
|
||||
export const metadata = config.metadata; // Site metadata from the config
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: ReactNode;
|
||||
}) {
|
||||
export default function RootLayout({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}</body>
|
||||
|
@ -8,7 +8,7 @@ import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import Avatar from "./components/Avatar";
|
||||
|
||||
const Config: Config = require("../../config.yml") as any;
|
||||
const config: Config = require("../../config.yml") as any;
|
||||
|
||||
library.add(fab, far, fas); // Loading in the icons from FontAwesome
|
||||
|
||||
@ -23,7 +23,7 @@ export default function Home() {
|
||||
options,
|
||||
description,
|
||||
theme,
|
||||
} = Config; // All the settings pulled from the config file
|
||||
} = config; // All the settings pulled from the config file
|
||||
|
||||
// Theme colors to use when using the selected theme
|
||||
// all used colors are from TailwindCSS
|
||||
|
Loading…
Reference in New Issue
Block a user