You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import HomeSidebar from "@/components/HomeSidebar";
|
|
|
|
import MemoEditor from "@/components/MemoEditor";
|
|
|
|
import MemoFilter from "@/components/MemoFilter";
|
|
|
|
import MemoList from "@/components/MemoList";
|
|
|
|
import MobileHeader from "@/components/MobileHeader";
|
|
|
|
|
|
|
|
const Home = () => {
|
|
|
|
return (
|
|
|
|
<div className="@container w-full flex flex-row justify-start items-start">
|
|
|
|
<div className="w-full px-4 @lg:max-w-[calc(100%-14rem)] sm:px-2 sm:pt-4">
|
|
|
|
<MobileHeader />
|
|
|
|
<div className="w-full h-auto flex flex-col justify-start items-start bg-zinc-100 dark:bg-zinc-800 rounded-lg">
|
|
|
|
<MemoEditor className="mb-2" cacheKey="home-memo-editor" />
|
|
|
|
<MemoFilter />
|
|
|
|
</div>
|
|
|
|
<MemoList />
|
|
|
|
</div>
|
|
|
|
<HomeSidebar />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Home;
|