Files
community-rule/app/(app)/profile/page.tsx
T
2026-04-18 14:12:49 -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 />;
}