This commit is contained in:
Mitchell Hashimoto
2023-10-05 10:52:42 -07:00
parent 64969fbd5a
commit 7d0789edfc
2 changed files with 4 additions and 6 deletions

View File

@ -4,13 +4,13 @@
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: #0E1324;
--background-rgb: #0e1324;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: 255, 255, 255;
--background-rgb: #0E1324;
--background-rgb: #0e1324;
}
}

View File

@ -3,8 +3,7 @@ import Image from "next/image";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex">
</div>
<div className="z-10 max-w-5xl w-full items-center justify-between font-mono text-sm lg:flex"></div>
<div className="relative flex place-items-center before:absolute before:h-[300px] before:w-[480px] before:-translate-x-1/2 before:rounded-full after:absolute after:-z-20 after:h-[180px] after:w-[240px] after:translate-x-1/3 after:content-[''] before:lg:h-[360px] z-[-1]">
<p className="text-9xl">
@ -18,8 +17,7 @@ export default function Home() {
</p>
</div>
<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left">
</div>
<div className="mb-32 grid text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left"></div>
</main>
);
}