generated from Fascinated/nextjs-13-template-with-tailwindcss
Compare commits
2 Commits
renovate/r
...
master
Author | SHA1 | Date | |
---|---|---|---|
81e19866ff | |||
42f631da08 |
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,21 +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";
|
||||
|
||||
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: React.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 of 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
|
||||
@ -54,32 +54,23 @@ export default function Home() {
|
||||
const selectedTheme = themeColors[theme] || themeColors.dark; // The theme to use (fallback of dark)
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={"relative"}>
|
||||
{/* Background Image */}
|
||||
{background.showBackground && background.backgroundImage && (
|
||||
// eslint-disable-next-line @next/next/no-img-element
|
||||
<img
|
||||
alt="Background image"
|
||||
src={background.backgroundImage}
|
||||
className={`absolute z-0 object-cover w-full h-full ${background.blur && "blur-sm"} brightness-${background.darken.enabled && background.darken.amount / 2}`}
|
||||
/>
|
||||
)}
|
||||
|
||||
<main
|
||||
className={`flex flex-col items-center justify-center w-screen h-screen ${selectedTheme.backgroundColor} ${selectedTheme.textColor}`}
|
||||
>
|
||||
{/* Background Image */}
|
||||
{background.showBackground && background.backgroundImage && (
|
||||
<Image
|
||||
alt="Background image"
|
||||
src={background.backgroundImage}
|
||||
fill={true}
|
||||
style={{
|
||||
zIndex: 0,
|
||||
filter: `${background.blur && "blur(4px)"} brightness(${
|
||||
background.darken.enabled && background.darken.amount / 2
|
||||
})`,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
|
||||
{/* Info Card */}
|
||||
<div
|
||||
className={`${
|
||||
infoCard.transparency != 0
|
||||
? `${selectedTheme.infoCardColor} shadow-lg rounded-lg`
|
||||
: ``
|
||||
} text-center`}
|
||||
className={`${infoCard.transparency != 0 && `${selectedTheme.infoCardColor} shadow-lg rounded-lg`} text-center`}
|
||||
style={{
|
||||
zIndex: 1,
|
||||
opacity: infoCard.transparency != 0 ? infoCard.transparency : 1,
|
||||
@ -184,6 +175,6 @@ export default function Home() {
|
||||
)}
|
||||
</div>
|
||||
</main>
|
||||
</>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user