feat: add Data Cards feature with CRUD operations and UI integration

This commit is contained in:
2026-03-01 13:28:40 +01:00
parent b4528920da
commit f4ce115a95
6 changed files with 822 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { StatusBar } from "expo-status-bar";
import { StyleSheet, View } from "react-native";
import { BottomNav } from "./src/components/BottomNav";
import { NotFoundPage } from "./src/pages/NotFound";
import { DataCardsPage } from "./src/pages/datacards";
import { ImagePage } from "./src/pages/image";
import { IndexPage } from "./src/pages/index";
import { TextPage } from "./src/pages/text";
@@ -16,6 +17,7 @@ const TABS: Tab[] = [
{ label: "Home", route: "home", page: IndexPage },
{ label: "Text", route: "text", page: TextPage, hideInNav: true },
{ label: "Image", route: "image", page: ImagePage, hideInNav: true },
{ label: "Data Cards", route: "datacards", page: DataCardsPage, hideInNav: true },
];
export { TABS, type Tab };