// app/(tabs)/profile.tsx 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'; import { TabScreen } from '@/components/layout/TabScreen'; const PLACEHOLDER_IMAGE = 'https://github.com/shadcn.png'; export default function ProfileScreen() { const insets = useSafeAreaInsets(); return (
console.log('Open settings')} > } /> {/* Profile content remains the same */} JD

John Doe

@johndoe
24 Workouts 12 Templates 3 Programs
); }