mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-04-25 16:15:23 -05:00
Fixed all occurances of Deathgarden: Rebirth.
This commit is contained in:
parent
6162570ff6
commit
af89942fa6
|
|
@ -27,7 +27,7 @@ public function download(): Factory|Application|View|\Illuminate\Contracts\Found
|
|||
->whereAction(FileAction::ADD)
|
||||
->get();
|
||||
|
||||
static::setTitle('Deathgarden Rebirth | Download');
|
||||
static::setTitle('Deathgarden: Rebirth | Download');
|
||||
return view('web.download', ['files' => $files]);
|
||||
}
|
||||
|
||||
|
|
@ -42,19 +42,19 @@ public function downloadLauncher()
|
|||
|
||||
public function howToPlay(): Factory|Application|View|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
static::setTitle('Deathgarden Rebirth | How to Play');
|
||||
static::setTitle('Deathgarden: Rebirth | How to Play');
|
||||
return view('web.how-to-play');
|
||||
}
|
||||
|
||||
public function eula(): Factory|Application|View|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
static::setTitle('Deathgarden Rebirth | End User License Agreement');
|
||||
static::setTitle('Deathgarden: Rebirth | End User License Agreement');
|
||||
return view('web.eula');
|
||||
}
|
||||
|
||||
public function credits(): Factory|Application|View|\Illuminate\Contracts\Foundation\Application
|
||||
{
|
||||
static::setTitle('Deathgarden Rebirth | Credits');
|
||||
static::setTitle('Deathgarden: Rebirth | Credits');
|
||||
return view('web.credits');
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<title>{{ $title ?? 'Deathgarden Rebirth' }}</title>
|
||||
<title>{{ $title ?? 'Deathgarden: Rebirth' }}</title>
|
||||
@vite(['resources/css/app.scss', 'resources/js/app.js'])
|
||||
@stack('head')
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
'headline'
|
||||
])
|
||||
|
||||
<div x-data="{open: true}" {{ $attributes->merge(['class' => 'bg-gray-900 px-4 py-4 rounded border border-gray-800']) }}>
|
||||
<div x-data="{open: false}" {{ $attributes->merge(['class' => 'bg-gray-900 px-4 py-4 rounded border border-gray-800']) }}>
|
||||
<h2 class="text-2xl font-semibold hover:after:bg-web-main after:transition-colors after:duration-200 cursor-pointer" x-on:click="open = !open" >
|
||||
<div class="flex justify-between">
|
||||
<span>{{ $headline }}</span>
|
||||
|
|
|
|||
2
dist/resources/views/web/credits.blade.php
vendored
2
dist/resources/views/web/credits.blade.php
vendored
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
<x-web.credits-user :userSteamId="0" usernameOverride="ZKWolf" headline="Project Rebirth Founder" class="my-4" :avatarOverride="asset('img/avatars/ZKWolf.webp')">
|
||||
<x-web.text>
|
||||
Project Rebirth is not affiliated with Deathgarden Rebirth.<br>
|
||||
Project Rebirth is not affiliated with Deathgarden: Rebirth.<br>
|
||||
Project Rebirth’s base code helped during the development of Deathgarden: Rebirth.
|
||||
</x-web.text>
|
||||
</x-web.credits-user>
|
||||
|
|
|
|||
2
dist/resources/views/web/download.blade.php
vendored
2
dist/resources/views/web/download.blade.php
vendored
|
|
@ -10,7 +10,7 @@
|
|||
<x-layouts.web>
|
||||
<div class="container flex flex-col justify-center items-center mx-auto py-8 2xl:px-48">
|
||||
<x-web.headline class="w-full">
|
||||
Deathgarden Rebirth Launcher
|
||||
Deathgarden: Rebirth Launcher
|
||||
</x-web.headline>
|
||||
|
||||
<x-web.text class="">
|
||||
|
|
|
|||
2
dist/resources/views/web/eula.blade.php
vendored
2
dist/resources/views/web/eula.blade.php
vendored
|
|
@ -1,7 +1,7 @@
|
|||
<x-layouts.web>
|
||||
<div class="container flex flex-col justify-center items-center mx-auto py-8 2xl:px-48">
|
||||
<img src="{{ asset('img/logos/DG_Rebirth_Logo.png') }}"
|
||||
alt="Deathgarden Rebirth Logo"
|
||||
alt="Deathgarden: Rebirth Logo"
|
||||
class="max-h-96"
|
||||
>
|
||||
<x-web.headline class="w-full mt-8">
|
||||
|
|
|
|||
4
dist/resources/views/web/home.blade.php
vendored
4
dist/resources/views/web/home.blade.php
vendored
|
|
@ -1,7 +1,7 @@
|
|||
<x-layouts.web>
|
||||
<div class="container flex flex-col justify-center items-center mx-auto py-8 2xl:px-48">
|
||||
<img src="{{ asset('img/logos/DG_Rebirth_Logo.png') }}"
|
||||
alt="Deathgarden Rebirth Logo"
|
||||
alt="Deathgarden: Rebirth Logo"
|
||||
class="max-h-96"
|
||||
>
|
||||
<span class="font-extrabold text-4xl my-10">
|
||||
|
|
@ -18,7 +18,7 @@ class="my-4 !px-10 !py-8 !bg-web-main hover:scale-110 !transition-all !border-we
|
|||
</a>
|
||||
|
||||
<x-web.headline class="w-full mt-16">
|
||||
What is Deathgarden Rebirth?
|
||||
What is Deathgarden: Rebirth?
|
||||
</x-web.headline>
|
||||
|
||||
<x-web.text>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user