
import React from 'react'
import {View,Text} from 'react-native'
const AboutImage = 'https://storage.googleapis.com/sparta-image.appspot.com/lecture/about.png'
export default function AboutPage(){
return (
<View style={styles.Back}>
<Text>HI! 스파르타코딩 앱개발반에 오신 것을 환영합니다</Text>
<View>
<Image source={{url:AboutImage}}></Image>
<Text>많은 내용을 간결하게 담아내려 노력했습니다!</Text>
<Text>꼭 완주하셔서 꼭 여러분 것으로 만들어가시길 바랍니다</Text>
<TouchableOpacity>
<Text>여러분의 인스타계정</Text>
</TouchableOpacity>
</View>
</View>
)
}
const styles = StyleSheet.create({
Back: {
backgroundColor: '#1F266A'
},
})
