diff --git a/frontend/app/_layout.tsx b/frontend/app/_layout.tsx
index 78c341c..d4f5299 100644
--- a/frontend/app/_layout.tsx
+++ b/frontend/app/_layout.tsx
@@ -1,6 +1,11 @@
import { Stack } from "expo-router";
-import "./global.css";
+import "./globals.css";
export default function RootLayout() {
- return ;
+ return (
+
+
+
+
+ );
}
diff --git a/frontend/app/index.tsx b/frontend/app/index.tsx
index 866b635..8adf97f 100644
--- a/frontend/app/index.tsx
+++ b/frontend/app/index.tsx
@@ -1,4 +1,5 @@
-import { Text, View } from "react-native";
+import { Text, View, TouchableOpacity } from "react-native";
+import { Link } from "expo-router";
export default function Index() {
return (
@@ -7,9 +8,15 @@ export default function Index() {
flex: 1,
justifyContent: "center",
alignItems: "center",
+ backgroundColor: "#00CEC8",
}}
>
- Edit app/index.tsx to edit this screen.
+ Welcome to SplitNGo
+
+ {}}>
+ Start
+
+
);
}
diff --git a/frontend/app/scanner.tsx b/frontend/app/scanner.tsx
new file mode 100644
index 0000000..7a3bd13
--- /dev/null
+++ b/frontend/app/scanner.tsx
@@ -0,0 +1,9 @@
+import { View, Text } from "react-native";
+
+export default function Scanner() {
+ return (
+
+ Scanner
+
+ );
+}
\ No newline at end of file
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index 909e901..2f35dd4 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -12,6 +12,7 @@
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
- "expo-env.d.ts"
+ "expo-env.d.ts",
+ "nativewind-env.d.ts"
]
-}
+}
\ No newline at end of file