feat: add basic landing page

This commit is contained in:
Oliver Booth 2023-08-05 21:03:02 +01:00
parent bb4a0238be
commit a495973c44
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
3 changed files with 38 additions and 4 deletions

View File

@ -2,9 +2,25 @@
@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer Localizer
<h1 class="display-4">@Localizer["HomeTitle"]</h1>
<p class="lead">@Localizer["HomeSubtitle"]</p>
<p>
My primary focus is C#, though I have dabbled in several other languages such as Java, Kotlin, VB, C/C++,
Python, and others. Over the years I've built up a collection of projects. Some of which I'm extremely proud of,
and others I've quietly abandoned and buried. I'm currently working on a few projects that I hope to release in
the near future, but in the meantime, feel free to check out some of my <a asp-page="/Projects/Index">previous work.</a>
</p>
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>
<p>
I've also written a few <a asp-page="/tutorials/index">tutorials</a> on various topics, usually involving
information not readily available elsewhere. I hope you find them useful.
</p>
<p>
If you want a general overview of stuff I've made, check out my <a href="https://github.com/oliverbooth">GitHub</a>,
<a href="https://oliverbooth.itch.io">itch.io</a>, and
<a href="https://play.google.com/store/apps/dev?id=9010459220239503006">Google Play</a>.
</p>
<p>If you'd like to get in touch, you can do so by <a asp-page="/contact/index">clicking here</a>.</p>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<data name="HomeTitle" xml:space="preserve">
<value>Hi, I'm Oliver.</value>
</data>
<data name="HomeSubtitle" xml:space="preserve">
<value>I'm a tech enthusiast, coffee drinker, and software developer.</value>
</data>
</root>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<data name="HomeTitle" xml:space="preserve">
<value>Salut, je suis Oliver.</value>
</data>
<data name="HomeSubtitle" xml:space="preserve">
<value>Je suis un passionné de technologie, un buveur de café, et un developpeur de logiciels.</value>
</data>
</root>