-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
128 lines (110 loc) · 2.66 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import { StatusBar } from 'expo-status-bar'
import { StyleSheet, Text, View, Image, Pressable, Linking } from 'react-native'
export default function App () {
return (
<View style={styles.container}>
<Text style={styles.text}>My Page</Text>
<Image
style={styles.logo}
source={{
uri: 'https://carla-coder.github.io/images/beecountrylogo.png'
}}
/>
<StatusBar style='auto' />
<Text style={styles.h2}>
NICE TO MEET YOU, <span style={styles.span}> I'M CARLA MOZENA.</span>
</Text>
<Image
style={styles.images}
source={{
uri: 'https://gifdb.com/images/high/cute-whirling-bee-v9h9cuie1dl3mhu1.gif'
}}
/>
<Text style={styles.p}>
Currently 54 years old and studying FullStack Systems Development.
Transitioning careers to the Technology field. Specialized in HTML, CSS,
JavaScript, Node.js, React, and React-Native.
</Text>
<Pressable
onPress={() => Linking.openURL('https://github.com/Carla-coder')}
>
<Text style={[styles.links, styles.btn]}>GitHub: /Carla-coder</Text>
</Pressable>
<View style={styles.footer}>
<Text style={styles.footerText}>
@2024 by Carla-coder All rights reserved.
</Text>
</View>
</View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#000000',
alignItems: 'center',
justifyContent: 'flex-end'
},
text: {
fontSize: 38,
textAlign: 'center',
marginVertical: 25,
color: '#fff'
},
logo: {
width: 180,
height: 200
},
h2: {
color: '#fdf5e6',
fontSize: 38,
textAlign: 'center',
fontFamily: 'Roboto',
marginVertical: 30
},
span: {
color: '#5d8aa8'
},
images: {
width: 100,
height: 100,
borderRadius: 50,
marginVertical: 20
},
p: {
fontFamily: 'Roboto',
color: '#fdf5e6',
fontSize: 35,
textAlign: 'center',
maxWidth: '50%',
marginVertical: 30
},
links: {
color: '#5d8aa8'
},
btn: {
padding: 20,
borderRadius: 20,
cursor: 'pointer',
backgroundColor: '#5d8aa8',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
color: '#000',
fontSize: 20,
bottom: 15
},
footerText: {
position: 'relative',
backgroundColor: '#000000',
width: '100%',
color: '#fdf5e6',
fontSize: 18
},
'@media (max-width: 768px)': {
position: 'fixed',
bottom: 0,
left: 0,
right: 0
}
})