chore: run lint fix

This commit is contained in:
Stevan Freeborn
2023-09-16 11:41:08 -05:00
parent 9ad0b51b29
commit 002b5b934f
33 changed files with 725 additions and 296 deletions
+3 -3
View File
@@ -2,9 +2,9 @@ import FollowingPosts from '@/components/FollowingPosts';
export default function FollowingPage() {
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'>Following</h1>
<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">Following</h1>
<FollowingPosts />
</div>
</main>