2023-09-15 21:56:41 -05:00
|
|
|
import FollowingPosts from '@/components/FollowingPosts';
|
2023-09-16 12:39:06 -05:00
|
|
|
import { Metadata } from 'next';
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'conveX | Following',
|
|
|
|
|
};
|
2023-09-15 21:56:41 -05:00
|
|
|
|
|
|
|
|
export default function FollowingPage() {
|
|
|
|
|
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">Following</h1>
|
2023-09-15 21:56:41 -05:00
|
|
|
<FollowingPosts />
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|