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.
39 lines
1.4 KiB
39 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"
|
|
x:Class="ShoopNCook.Pages.Splash"
|
|
Title="Splash"
|
|
BackgroundColor="{StaticResource BackgroundPrimary}">
|
|
<Grid
|
|
RowDefinitions="Auto,Auto,*,Auto">
|
|
<Image Grid.Row="0"
|
|
Source="logo.png"
|
|
Margin="0,80,0,0">
|
|
</Image>
|
|
<Label
|
|
Grid.Row="1"
|
|
Text="ShopNCook"
|
|
Style="{StaticResource h1}"
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
HorizontalTextAlignment="Center"
|
|
Margin="0,25,0,25"
|
|
/>
|
|
<Label
|
|
Grid.Row="2"
|
|
Text="Don't waste time planning your meals ! Eat better, faster, better !"
|
|
Style="{StaticResource h2}"
|
|
TextColor="{StaticResource TextColorSecondary}"
|
|
HorizontalTextAlignment="Center"
|
|
FontSize="Small"
|
|
Margin="15"
|
|
/>
|
|
<Button
|
|
Grid.Row="3"
|
|
BackgroundColor="{StaticResource Selected}"
|
|
FontFamily="PoppinsMedium"
|
|
TextColor="{StaticResource ButtonText}"
|
|
Text="Let's Get Started ➝"
|
|
Margin="25"
|
|
Clicked="OnGetStartedButtonClicked"/>
|
|
</Grid>
|
|
</ContentPage> |