add Tailwind and code cleanup(WIP)

This commit is contained in:
Stanislaw
2023-10-26 06:20:33 +02:00
parent d307234f23
commit d1d79d78f0
16 changed files with 1277 additions and 90 deletions

View File

@@ -1,11 +1,18 @@
import Stars from "@/components/stars";
import Skeleton from "@/components/mesh/skeleton";
import style from "./page.module.css";
export default function Home() {
return (
<div className={style.skeleton}>
<h1 className={style.logo}>J4roid</h1>
<h1 className={style.quota}>PROFESSIONAL COCK SMELLER</h1>
<Skeleton />
</div>
<main className="w-100 m-0 h-screen">
<Stars />
<div className="fixed z-50 flex flex-col content-start text-left top-1/2 left-1/4 text-white">
<button className="">ABOUT ME</button>
<button className="">MY MODELS</button>
<button className="">CONTACT</button>
<div className=" fixed h-screen w-1/2 right-0 top-0">
<Skeleton />
</div>
</div>
</main>
);
}