adding all pagees and all sort of working now

This commit is contained in:
Arjun Patel
2022-01-30 17:09:49 -08:00
parent b6a153184b
commit 53ed0b8473
14 changed files with 983 additions and 817 deletions
@@ -0,0 +1,21 @@
import Header from "../v2/Header";
import Sidebar from "../v2/Sidebar";
import React from "react";
export default function getDynamicMeLayout(page: React.ReactElement) {
console.log("rendering layout");
return (
<div className="flex flex-col">
<Header />
<div className="flex-1 flex flex-row items-baseline">
<Sidebar />
<div className="flex flex-col px-20 items-baseline flex-1 container mx-auto">
{page}
</div>
</div>
</div>
);
}