feat: bootstrap lunch picker miniapp with backend, docs, and branding assets

This commit is contained in:
mingking2
2026-04-15 14:03:08 +09:00
commit 7faf251fd3
85 changed files with 31332 additions and 0 deletions

39
starter-pages-_404.tsx Normal file
View File

@@ -0,0 +1,39 @@
import { StyleSheet, Text, View } from 'react-native';
import { SafeAreaView } from '@granite-js/native/react-native-safe-area-context';
export default function NotFoundPage() {
return (
<SafeAreaView style={styles.safeArea}>
<View style={styles.container}>
<Text style={styles.title}>Page not found</Text>
<Text style={styles.description}>
.
</Text>
</View>
</SafeAreaView>
);
}
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',
},
});