Files
conve-x/src/app/page.tsx
T
2023-09-16 11:41:08 -05:00

13 lines
315 B
TypeScript

import AllPosts from '@/components/AllPosts';
export default function Home() {
return (
<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>
<AllPosts />
</div>
</main>
);
}