|
27 | 27 |
|
28 | 28 | <StackPanel Spacing="4"> |
29 | 29 | <TextBlock Text="JustLauncher" FontSize="28" FontWeight="Black" Foreground="{DynamicResource PrimaryText}" HorizontalAlignment="Center"/> |
30 | | - <TextBlock Text="Version 1.0.0" FontSize="14" Foreground="{DynamicResource SecondaryText}" HorizontalAlignment="Center" Opacity="0.8"/> |
| 30 | + <TextBlock Text="{Binding Version, StringFormat='Version {0}'}" FontSize="14" Foreground="{DynamicResource SecondaryText}" HorizontalAlignment="Center" Opacity="0.8"/> |
31 | 31 | </StackPanel> |
32 | 32 |
|
33 | 33 | <TextBlock Text="A modern, high-performance Minecraft launcher built with Avalonia." |
|
37 | 37 | <i:Icon Value="fa-solid fa-code" Foreground="{DynamicResource SuccessBrush}" VerticalAlignment="Center"/> |
38 | 38 | <TextBlock Text="Created by JustNeki" FontSize="13" FontWeight="Bold" Foreground="{DynamicResource PrimaryText}" VerticalAlignment="Center"/> |
39 | 39 | </StackPanel> |
| 40 | + |
| 41 | + <!-- Social Links --> |
| 42 | + <StackPanel Orientation="Horizontal" Spacing="12" HorizontalAlignment="Center" Margin="0,8,0,0"> |
| 43 | + <Button x:Name="GitHubButton" Classes="Secondary" Padding="10,8" CornerRadius="8" ToolTip.Tip="View on GitHub"> |
| 44 | + <StackPanel Orientation="Horizontal" Spacing="8"> |
| 45 | + <i:Icon Value="fa-brands fa-github" FontSize="16"/> |
| 46 | + <TextBlock Text="GitHub" FontSize="12" FontWeight="Medium"/> |
| 47 | + </StackPanel> |
| 48 | + </Button> |
| 49 | + <Button x:Name="WebsiteButton" Classes="Secondary" Padding="10,8" CornerRadius="8" ToolTip.Tip="Visit Website"> |
| 50 | + <StackPanel Orientation="Horizontal" Spacing="8"> |
| 51 | + <i:Icon Value="fa-solid fa-globe" FontSize="16"/> |
| 52 | + <TextBlock Text="Website" FontSize="12" FontWeight="Medium"/> |
| 53 | + </StackPanel> |
| 54 | + </Button> |
| 55 | + </StackPanel> |
40 | 56 | </StackPanel> |
41 | 57 |
|
42 | 58 | <!-- Footer --> |
43 | | - <StackPanel Grid.Row="2" HorizontalAlignment="Center" Margin="0,32,0,0"> |
44 | | - <TextBlock Text="© 2026 JustNeki • Open Source" FontSize="11" Foreground="{DynamicResource SecondaryText}" Opacity="0.5"/> |
| 59 | + <StackPanel Grid.Row="2" HorizontalAlignment="Center" Margin="0,24,0,0"> |
| 60 | + <TextBlock Text="{Binding Copyright}" FontSize="11" Foreground="{DynamicResource SecondaryText}" Opacity="0.5"/> |
45 | 61 | </StackPanel> |
46 | 62 | </Grid> |
47 | 63 | </Border> |
|
0 commit comments