Skip to content

Commit

Permalink
website initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepThePatel committed Apr 15, 2024
1 parent dda7109 commit f30def8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
12 changes: 11 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
<p>Cool With Anything</p>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="website-styles/index.css">
</head>
<body>
<div class="header">
<p class="header-title">Scheduler X</p>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion screens/SettingsScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ function SelectOthers() {
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('For support, contact us at [email protected]')}>
<Text style={styles.accountText}>Support</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('App Version: v0.5')}>
<TouchableOpacity style={styles.pageButton} onPress={() => Alert.alert('App Version: v0.9')}>
<Text style={styles.accountText}>Version</Text>
</TouchableOpacity>
</View>
Expand Down
12 changes: 12 additions & 0 deletions website-styles/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.header {
display: flex;
flex: 1;
flex-direction: row;
justify-content: center;
}

.header-title {
margin-top: 5px;
font-size: 30px;
font-weight: 600;
}

0 comments on commit f30def8

Please sign in to comment.