- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
36 lines
602 B
CSS
36 lines
602 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
body {
|
|
padding: 80px 100px;
|
|
font: 13px "Helvetica Neue", "Lucida Grande", "Arial";
|
|
background: #ECE9E9 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#ECE9E9));
|
|
background: #ECE9E9 -moz-linear-gradient(top, #fff, #ECE9E9);
|
|
background-repeat: no-repeat;
|
|
color: #555;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
h1, h2 {
|
|
font-size: 22px;
|
|
color: #343434;
|
|
}
|
|
h1 em, h2 em {
|
|
padding: 0 5px;
|
|
font-weight: normal;
|
|
}
|
|
h1 {
|
|
font-size: 60px;
|
|
}
|
|
h2 {
|
|
margin-top: 10px;
|
|
}
|
|
ul li {
|
|
list-style: none;
|
|
}
|
|
#stacktrace {
|
|
margin-left: 60px;
|
|
}
|