EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
page.tsx
Go to the documentation of this file.
1"use client";
2
3import { Icon } from '@/contexts/IconContext';
4
5export default function ProfilePage() {
6 return (
7 <div className="flex items-center justify-center min-h-screen bg-bg">
8 <div className="text-center">
9 <div className="text-6xl mb-4">
10 <Icon name="person" size={64} className="inline-block" />
11 </div>
12 <h1 className="text-3xl font-bold text-text mb-2">My Profile</h1>
13 <p className="text-xl text-muted">Coming Soon</p>
14 </div>
15 </div>
16 );
17}