landing page
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user