Files
conve-x/src/app/page.tsx
T

13 lines
315 B
TypeScript
Raw Normal View History

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 (
<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>
);
2023-09-09 17:02:12 -05:00
}