landing page

This commit is contained in:
2025-10-13 11:16:05 +02:00
parent 131c7b3f37
commit a83bd3128b
8 changed files with 97 additions and 14 deletions
+25
View File
@@ -0,0 +1,25 @@
import { View } from "react-native";
import { background } from "../assets";
import GradientButton from "../components/GradientButton";
import Page from "../layouts/Page";
export default function LandingPage() {
return (
<Page
shareBtn
connect
title="Landing Page"
backgroundImg={background.homeBGWeb}
>
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<GradientButton title="Commencer la visite" onPress={() => {}} />
</View>
</Page>
);
}