Fix: gradient background on signup page; Added: color for text in button, on index page added new button and greeting

This commit is contained in:
2024-05-09 20:06:20 +02:00
parent a25ce29154
commit e8a0449ad2
4 changed files with 41 additions and 7 deletions

View File

@ -2,7 +2,7 @@ import { StyleSheet, Text, View } from "react-native";
import Button from "@components/Button";
import { colors } from "@components/style";
import { useAuth } from "@context/AuthContext";
import Link from "@components/Link";
import { router } from "expo-router";
export default function Index() {
const { onLogout, authState } = useAuth();
@ -10,8 +10,19 @@ export default function Index() {
return (
<View style={styles.container}>
<Text style={styles.h1}>Welcome {user.username}</Text>
<Link href="/beer">Go to BEER</Link>
<Text style={styles.h1}>Welcome {user.username}!</Text>
<Text style={styles.h2}>We hope, you're enjoying your beer.</Text>
<View style={styles.button}>
<Button
style={styles.button}
title="Add beer!"
color={colors.gold}
textColor={colors.white}
onPress={() => {
router.push("/beer");
}}
></Button>
</View>
</View>
);
}
@ -27,4 +38,16 @@ const styles = StyleSheet.create({
textAlign: "center",
paddingTop: "20%",
},
h2: {
color: "#FFF",
fontSize: 20,
textAlign: "center",
paddingTop: "1%",
},
button: {
color: colors.charcoal,
fontSize: 30,
textAlign: "center",
paddingTop: "2%",
},
});