можно и в прод

This commit is contained in:
bon 2025-03-19 19:40:31 +03:00
parent 9928944a6a
commit d8d5acf823
4 changed files with 12 additions and 10 deletions

View file

@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = {}; const nextConfig = {
devIndicators: false
};
export default nextConfig; export default nextConfig;

View file

@ -14,6 +14,11 @@ div {
height: 100%; height: 100%;
} }
div span {
position: absolute;
bottom: 0;
}
@theme inline { @theme inline {
--color-background: var(--background); --color-background: var(--background);
--color-foreground: var(--foreground); --color-foreground: var(--foreground);

View file

@ -3,7 +3,6 @@ import Link from "next/link";
import awesome from "/public/awesome.jpg"; import awesome from "/public/awesome.jpg";
import diablo from "/public/diablo.gif"; import diablo from "/public/diablo.gif";
import localFont from "next/font/local"; import localFont from "next/font/local";
import styles from "./styles.css";
const jetbrainsMonoRegular = localFont({ const jetbrainsMonoRegular = localFont({
src: "../../public/fonts/jbm/JetBrainsMonoNerdFont-Regular.ttf", 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://git.bonsystems.ru">[ forgejo ]</Link>
<Link href="https://jellyfin.bonsystems.ru">[ jellyfin ]</Link> <Link href="https://jellyfin.bonsystems.ru">[ jellyfin ]</Link>
</div> </div>
<p className={styles.lmao}>あなたバカです</p> <div className={"flex justify-center"}>
<span>あなたバカです</span>
</div>
</div> </div>
</> </>
) )
} }

View file

@ -6,10 +6,3 @@ p {
padding-left: 10px; padding-left: 10px;
padding-right: 10px; padding-right: 10px;
} }
.lmao {
position: absolute;
bottom: 0;
text-align: center;
vertical-align: bottom;
}