wip 3-col layout

This commit is contained in:
Martti Malmi
2023-11-21 11:57:25 +02:00
parent 60af57059b
commit dd941ae70e
11 changed files with 302 additions and 218 deletions

View File

@ -0,0 +1,11 @@
import SearchBox from "../../Element/SearchBox";
export default function RightColumn() {
return (
<div className="flex-col hidden lg:flex lg:w-1/3 sticky top-0 h-screen p-2">
<div>
<SearchBox />
</div>
</div>
);
}