// app/(tabs)/profile.tsx import React from 'react'; import { View, ScrollView } from 'react-native'; import { Settings } from 'lucide-react-native'; import { H1 } from '@/components/ui/typography'; import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'; import { Button } from '@/components/ui/button'; import { Text } from '@/components/ui/text'; import Header from '@/components/Header'; const PLACEHOLDER_IMAGE = 'https://github.com/shadcn.png'; // Placeholder profile image export default function ProfileScreen() { return (
{ // TODO: Navigate to settings console.log('Open settings'); }} > } /> {/* Profile Header Section */} JD

John Doe

@johndoe
{/* Stats Section */} 24 Workouts 12 Templates 3 Programs {/* Profile Actions */}
); }