23 lines
821 B
TypeScript
23 lines
821 B
TypeScript
import {View, Text, SafeAreaView, ScrollView, Image} from "react-native";
|
||
import React from "react";
|
||
import images from "@/constants/images";
|
||
|
||
const SignIn = () => {
|
||
return (
|
||
<SafeAreaView className="bg-white h-full">
|
||
<ScrollView contentContainerClassName="h-full">
|
||
<Text className={"text-center text-gray-600 font-bold mt-10"}>Welcome to Mobile.mk</Text>
|
||
<Image source={images.collage} className="w-full h-4/6" resizeMode="contain"/>
|
||
<View className={"px-10"}>
|
||
<Text className={"text-3xl text-center text-gray-400"}>
|
||
Поблиску до вашиот {"\n"}
|
||
<Text>идеален автомобил</Text>
|
||
</Text>
|
||
</View>
|
||
</ScrollView>
|
||
</SafeAreaView>
|
||
);
|
||
};
|
||
|
||
export default SignIn;
|