diff --git a/front/views/HomeView.tsx b/front/views/HomeView.tsx
new file mode 100644
index 0000000..3244f73
--- /dev/null
+++ b/front/views/HomeView.tsx
@@ -0,0 +1,26 @@
+import React from "react";
+import { Text, View, ColorValue } from 'react-native';
+import { useTheme } from "react-native-paper";
+
+const ExampleBox = (props: { textColor: ColorValue, backgroundColor: ColorValue }) => (
+
+ Hello
+
+)
+
+const HomeView = () => {
+ const { colors } = useTheme();
+ return (
+
+
+
+
+
+
+
+
+ );
+}
+
+
+export default HomeView;