diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx new file mode 100644 index 0000000..c993589 --- /dev/null +++ b/app/(tabs)/_layout.tsx @@ -0,0 +1,10 @@ +import { Tabs } from 'expo-router'; + +export default function TabLayout() { + return ( + + + + + ); +} \ No newline at end of file diff --git a/app/(tabs)/about.tsx b/app/(tabs)/about.tsx new file mode 100644 index 0000000..2bf1212 --- /dev/null +++ b/app/(tabs)/about.tsx @@ -0,0 +1,5 @@ +import { Text } from "react-native"; + +export default function AboutRoute() { + return About Route; +} \ No newline at end of file diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx new file mode 100644 index 0000000..092bcfa --- /dev/null +++ b/app/(tabs)/index.tsx @@ -0,0 +1,5 @@ +import { Text } from "react-native"; + +export default function IndexRoute() { + return Index Route; +} \ No newline at end of file diff --git a/app/_layout.tsx b/app/_layout.tsx index 8606eb6..9095be4 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -16,11 +16,7 @@ export default function RootLayout() { - - + diff --git a/app/index.tsx b/app/index.tsx deleted file mode 100644 index c02fcc9..0000000 --- a/app/index.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { HomeScreen } from "@/features/home/screens/home-screen"; - -export default function IndexRoute() { - return ; -} diff --git a/app/modal.tsx b/app/modal.tsx deleted file mode 100644 index a53c143..0000000 --- a/app/modal.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import { ModalScreen } from "@/features/system/screens/modal-screen"; - -export default function ModalRoute() { - return ; -}