More formatting

This commit is contained in:
Mattias 2024-03-07 11:43:19 +01:00
parent 9c824f1d7b
commit 25284bb10e

View file

@ -1,27 +1,31 @@
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
import BasicWindow from "../Components/BasicWindow"; import BasicWindow from "../Components/BasicWindow";
function YourProjectsPage() { function YourProjectsPage(): JSX.Element {
const content = (
const content =
<> <>
<h1 className="font-bold text-[30px] mb-[20px]">Your Projects</h1> <h1 className="font-bold text-[30px] mb-[20px]">Your Projects</h1>
<div className="border-4 border-black bg-white flex flex-col items-center justify-between min-h-[65vh] h-fit w-[50vw] rounded-3xl content-center overflow-scroll space-y-[10px] p-[30px]"> <div className="border-4 border-black bg-white flex flex-col items-center justify-between min-h-[65vh] h-fit w-[50vw] rounded-3xl content-center overflow-scroll space-y-[10px] p-[30px]">
<Link to="/project"> <Link to="/project">
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1> <h1 className="underline text-[24px] cursor-pointer font-bold">
ProjectNameExample
</h1>
</Link> </Link>
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1> <h1 className="underline text-[24px] cursor-pointer font-bold">
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1> ProjectNameExample
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1> </h1>
<h1 className="underline text-[24px] cursor-pointer font-bold">
ProjectNameExample
</h1>
<h1 className="underline text-[24px] cursor-pointer font-bold">
ProjectNameExample
</h1>
</div> </div>
</> </>
const buttons =
<>
</>
return (
<BasicWindow username="Admin" content={content} buttons={buttons}/>
); );
const buttons = <></>;
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
} }
export default YourProjectsPage; export default YourProjectsPage;