import Screen from "@/components/Screen";
import {SafeAreaView, Text} from "react-native";
import React from "react";
const socialNetworkButtons: ISocialNetworkButtons[] = [
{ icon: "instagram" },
{ icon: "facebook" },
{ icon: "linkedin" },
];
interface ISocialNetworkButtons {
icon: any;
}
export default function LoginPage() {
return (
Tmp
//
//
//
//
//
// Connexion à Optifit
//
//
// Personnalise ton expérience du sport avec Optifit, ton nouveau
// coach IA.
//
//
//
//
// {socialNetworkButtons.map((socialNetworkButton) => (
//
// ))}
//
//
//
// Tu n'as pas encore de compte ?
//
// Inscris-toi !
//
//
//
// Mot de passe oublié ?
//
//
//
//
//
);
}