import type { Metadata } from "next"; import messages from "../../../messages/en/index"; import { NO_INDEX_ROBOTS, routeMetadata } from "../../../lib/siteMetadata"; import ProfilePageClient from "./ProfilePageClient"; export const metadata: Metadata = routeMetadata("/profile", { title: messages.metadata.profile.title, robots: NO_INDEX_ROBOTS, }); export default function ProfilePage() { return ; }