2024-03-07 10:05:45 +01:00
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
import BasicWindow from "../Components/BasicWindow";
|
|
|
|
|
|
|
|
function YourProjectsPage() {
|
|
|
|
|
|
|
|
const content =
|
|
|
|
<>
|
|
|
|
<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]">
|
|
|
|
<Link to="/project">
|
2024-03-07 10:45:23 +01:00
|
|
|
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1>
|
2024-03-07 10:05:45 +01:00
|
|
|
</Link>
|
2024-03-07 10:45:23 +01:00
|
|
|
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1>
|
|
|
|
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1>
|
|
|
|
<h1 className="underline text-[24px] cursor-pointer font-bold">ProjectNameExample</h1>
|
2024-03-07 10:05:45 +01:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
|
|
|
|
const buttons =
|
|
|
|
<>
|
|
|
|
</>
|
|
|
|
|
|
|
|
return (
|
|
|
|
<BasicWindow username="Admin" content={content} buttons={buttons}/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
export default YourProjectsPage;
|