12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import type { Metadata } from "next";
|
|
import ProfilePageClient from "./ProfilePageClient";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Profile · CommunityRule",
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function ProfilePage() {
|
|
return <ProfilePageClient />;
|
|
}
|