можно и в прод
This commit is contained in:
parent
9928944a6a
commit
d8d5acf823
4 changed files with 12 additions and 10 deletions
|
@ -1,4 +1,6 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {};
|
||||
const nextConfig = {
|
||||
devIndicators: false
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
|
|
@ -14,6 +14,11 @@ div {
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
div span {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
@theme inline {
|
||||
--color-background: var(--background);
|
||||
--color-foreground: var(--foreground);
|
||||
|
|
|
@ -3,7 +3,6 @@ import Link from "next/link";
|
|||
import awesome from "/public/awesome.jpg";
|
||||
import diablo from "/public/diablo.gif";
|
||||
import localFont from "next/font/local";
|
||||
import styles from "./styles.css";
|
||||
|
||||
const jetbrainsMonoRegular = localFont({
|
||||
src: "../../public/fonts/jbm/JetBrainsMonoNerdFont-Regular.ttf",
|
||||
|
@ -24,8 +23,11 @@ export default function Page() {
|
|||
<Link href="https://git.bonsystems.ru">[ forgejo ]</Link>
|
||||
<Link href="https://jellyfin.bonsystems.ru">[ jellyfin ]</Link>
|
||||
</div>
|
||||
<p className={styles.lmao}>あなたバカです。</p>
|
||||
<div className={"flex justify-center"}>
|
||||
<span>あなたバカです。</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</>
|
||||
)
|
||||
}
|
|
@ -5,11 +5,4 @@
|
|||
p {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.lmao {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
text-align: center;
|
||||
vertical-align: bottom;
|
||||
}
|
Loading…
Add table
Reference in a new issue