You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.4 KiB

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:local="clr-namespace:Views"
x:Class="Views.MainPage"
Title="Wikipet's"
IconImageSource="{FontImage FontFamily=Raleway}">
<ScrollView>
<VerticalStackLayout>
<!-- To display the home image -->
<Image Source="accueil.png"
MaximumWidthRequest="200"/>
<!-- To display the welcome message -->
<Label HorizontalOptions="Center"
FontSize="Large"
Text="Bienvenue sur Wikipet's"/>
<!-- To display a description of the application -->
<Label MaximumWidthRequest="350"
HorizontalOptions="Center"
HorizontalTextAlignment="Center"
FontFamily="Raleway"
FontAttributes="None"
Text="Notre application va vous permettre de découvrir l'animal de compagnie qui convient le mieux à vous et votre quotidien. Une fois l'animal adopté, vous pourrez sauvegardé tous les informations dont vous avez besoin."/>
</VerticalStackLayout>
</ScrollView>
</ContentPage>