Merge branch 'main' into main

This commit is contained in:
Sophia Atkinson 2024-04-03 16:32:03 -07:00 committed by GitHub
commit 28900e2788
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 3 deletions

View File

@ -140,10 +140,28 @@ let widget = new SteamApp('#app-widget', {
</div>
@endif
<div><hr/></div>
@if (!env('APP_ENABLEDONATION'))
<div><hr/></div>
@endif
<div class="content-section is-centered">
<div class="content-section is-centered {{ (env('APP_ENABLEDONATION')) ? 'background-get-started' : '' }}">
<div class="is-sidepadding button-get-started fade fade-out">
<a href="{{ url('/documentation') }}">Get Started!</a>
</div>
</div>
</div>
@if (env('APP_ENABLEDONATION'))
<div class="content-section is-centered">
<div class="is-sidepadding fade fade-out">
<h3>Your support is greatly appreciated</h3>
<p>
Your support helps to continue working on the project and providing the required infrastructure.
</p>
<p class="sponsoring">
<a href='https://ko-fi.com/C0C7V2ESD' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
</p>
</div>
</div>
@endif