import { StyleSheet, Text, View } from 'react-native'; import { SafeAreaView } from '@granite-js/native/react-native-safe-area-context'; export default function NotFoundPage() { return ( Page not found 요청한 화면을 찾을 수 없습니다. ); } const styles = StyleSheet.create({ safeArea: { flex: 1, backgroundColor: '#F4F7FB', }, container: { flex: 1, alignItems: 'center', justifyContent: 'center', paddingHorizontal: 24, }, title: { color: '#111827', fontSize: 24, fontWeight: '700', marginBottom: 8, }, description: { color: '#4B5563', fontSize: 15, textAlign: 'center', }, });