Design idea

This commit is contained in:
brausjonas
2023-05-24 00:49:59 +02:00
parent aadd9f5f94
commit 702e3e8e4d
8 changed files with 666 additions and 317 deletions
+28 -3
View File
@@ -11,19 +11,44 @@ import InputForm from "@/components/InputForm";
import Login from "@/components/Login";
import Test from "@/components/Test";
import BasicDateCalendar from "@/components/CalendarSideBar";
import {randomInt} from "next/dist/shared/lib/bloom-filter/utils";
const inter = Inter({subsets: ['latin']})
export default function Home(p) {
return (
<div className={"normal-centered"}>
<div style={{
position: "absolute",
width: "100%",
height: "100%",
overflow: "clip",
pointerEvents: "none"
}}>
<div style={{
position: "absolute",
transform: "skew(20deg)",
width: "100%",
height: "100%",
zIndex: -10,
backgroundColor: "#f2f2f2",
borderTopLeftRadius: 400,
borderBottomRightRadius: 800,
}}></div>
<div style={{
position: "absolute",
width: "100%",
height: "100%",
zIndex: -11,
backgroundColor: "#346991",
}}></div>
</div>
<Login/>
</div>
)
}