diff --git a/src/app/u/[username]/page.tsx b/src/app/u/[username]/page.tsx
new file mode 100644
index 00000000..a765d454
--- /dev/null
+++ b/src/app/u/[username]/page.tsx
@@ -0,0 +1,63 @@
+import { use } from 'react';
+import Link from 'next/link';
+import { CopyProfileLinkButton } from '@/components/profile/CopyProfileLinkButton';
+import { User } from 'lucide-react';
+
+export default function CreatorProfilePage({
+ params,
+}: {
+ params: Promise<{ username: string }>;
+}) {
+ const { username } = use(params);
+
+ // TODO: Fetch creator profile data based on username
+ // This would typically come from an API or database query
+
+ return (
+
+
+
+ ← Back to home
+
+
+ {/* Profile Header Card */}
+
+
+
+
+
+
+
+
+ {username}
+
+
+ Creator Profile
+
+
+
+
+
+ {/* Copy Link Button */}
+
+
+
+
+
+ {/* Profile Content Placeholder */}
+
+
+ Profile Details
+
+
+ Creator profile content will be displayed here.
+