// 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'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; const PLACEHOLDER_IMAGE = 'https://github.com/shadcn.png'; export default function ProfileScreen() { const insets = useSafeAreaInsets(); return (
{ console.log('Open settings'); }} > } /> {/* Profile Header Section */} JD

John Doe

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