2023-09-15 17:52:01 -05:00
|
|
|
import AllPosts from '@/components/AllPosts';
|
|
|
|
|
|
2023-09-09 17:02:12 -05:00
|
|
|
export default function Home() {
|
2023-09-15 17:52:01 -05:00
|
|
|
return (
|
2023-09-16 11:41:08 -05:00
|
|
|
<main className="flex flex-col items-center flex-1">
|
|
|
|
|
<div className="flex flex-col w-full max-w-4xl gap-4">
|
|
|
|
|
<h1 className="text-4xl font-bold">Home</h1>
|
2023-09-15 17:52:01 -05:00
|
|
|
<AllPosts />
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
);
|
2023-09-09 17:02:12 -05:00
|
|
|
}
|