Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
38 lines
813 B
TypeScript
38 lines
813 B
TypeScript
/**
|
||
* App Component - React Native + Expo
|
||
* MVP Sistema Administración de Obra e INFONAVIT
|
||
*/
|
||
|
||
import { StatusBar } from 'expo-status-bar';
|
||
import { StyleSheet, Text, View } from 'react-native';
|
||
|
||
export default function App() {
|
||
return (
|
||
<View style={styles.container}>
|
||
<Text style={styles.title}>🏗️ Sistema Administración de Obra</Text>
|
||
<Text style={styles.subtitle}>App Móvil - Supervisor</Text>
|
||
<StatusBar style="auto" />
|
||
</View>
|
||
);
|
||
}
|
||
|
||
const styles = StyleSheet.create({
|
||
container: {
|
||
flex: 1,
|
||
backgroundColor: '#fff',
|
||
alignItems: 'center',
|
||
justifyContent: 'center',
|
||
padding: 20,
|
||
},
|
||
title: {
|
||
fontSize: 24,
|
||
fontWeight: 'bold',
|
||
marginBottom: 8,
|
||
textAlign: 'center',
|
||
},
|
||
subtitle: {
|
||
fontSize: 16,
|
||
color: '#666',
|
||
},
|
||
});
|