2024-09-28 00:18:55 +08:00
|
|
|
import { FriendLinkList } from "@/components/friend-links-page/FriendLinksList";
|
2024-01-06 20:53:18 +08:00
|
|
|
import { Separator } from "@/components/ui/separator";
|
2023-12-25 17:21:39 +08:00
|
|
|
import { Footer } from "@/components/utils/Footer";
|
2024-08-16 14:12:30 +08:00
|
|
|
import { ContentContainer, Page } from "@/components/utils/Layout";
|
2023-12-25 17:21:39 +08:00
|
|
|
import { NavBar } from "@/components/utils/NavBar";
|
2024-09-28 00:18:55 +08:00
|
|
|
import { PageTitle } from "@/components/utils/PageTitle";
|
2023-12-25 17:21:39 +08:00
|
|
|
import { SEO } from "@/components/utils/SEO";
|
|
|
|
|
import { Config } from "@/data/config";
|
|
|
|
|
import { FriendsList } from "@/data/friends";
|
|
|
|
|
|
|
|
|
|
export default function FriendsPage() {
|
|
|
|
|
return (
|
|
|
|
|
<Page>
|
2024-09-13 23:07:20 +08:00
|
|
|
<SEO description={"My Friend Links"} title={`${Config.SiteTitle} - Friends`} />
|
2024-01-09 16:48:48 +08:00
|
|
|
<NavBar />
|
2023-12-25 17:21:39 +08:00
|
|
|
<ContentContainer>
|
2024-09-28 00:18:55 +08:00
|
|
|
<PageTitle>{"FRIENDS"}</PageTitle>
|
2024-01-06 20:53:18 +08:00
|
|
|
<Separator />
|
2024-09-28 00:18:55 +08:00
|
|
|
<FriendLinkList friends={FriendsList} />
|
2023-12-25 17:21:39 +08:00
|
|
|
</ContentContainer>
|
|
|
|
|
<Footer />
|
|
|
|
|
</Page>
|
|
|
|
|
);
|
|
|
|
|
}
|