import { View, Text, Pressable } from "react-native";
import { Link } from "expo-router";

export default function Home() {
  return (
    <View style={{ padding: 16, gap: 12 }}>
      <Text style={{ fontSize: 22, fontWeight: "700" }}>Bùhlé</Text>

      <Link href="/(auth)/login" asChild>
        <Pressable style={{ padding: 12, borderWidth: 1, borderRadius: 10 }}>
          <Text>Login</Text>
        </Pressable>
      </Link>

      <Link href="/(client)" asChild>
        <Pressable style={{ padding: 12, borderWidth: 1, borderRadius: 10 }}>
          <Text>Client</Text>
        </Pressable>
      </Link>

      <Link href="/(provider)" asChild>
        <Pressable style={{ padding: 12, borderWidth: 1, borderRadius: 10 }}>
          <Text>Provider</Text>
        </Pressable>
      </Link>
    </View>
  );
}
