Files
community-rule/app/profile/page.tsx
T
2026-04-06 16:37:15 -06:00

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 />;
}