Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions resources/views/company.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('partials.head', ['title' => 'AYOUNGCO, LLC'])
</head>
<body>
<main class="terminal-shell flex min-h-screen items-center">
<section class="terminal-panel w-full">
<div class="flex flex-wrap items-center justify-between gap-3">
<div class="flex items-center gap-3">
<span class="terminal-divider inline-flex h-16 w-16 items-center justify-center rounded-full border text-xl font-bold tracking-widest">
AY
</span>
<p class="text-xs uppercase tracking-[0.3em] text-zinc-400">AYOUNGCO, LLC</p>
</div>
<a class="terminal-btn" href="{{ route('home') }}">Back to Main</a>
</div>

<h1 class="terminal-title mt-6">AYOUNGCO, LLC</h1>
<p class="terminal-muted mt-3 max-w-2xl">
AYOUNGCO, LLC is the company page for Adam Young. This space can host company profile details, project highlights,
and contact information.
</p>

<div class="mt-6 flex flex-wrap gap-2">
<a class="terminal-btn terminal-btn-accent" href="mailto:hello@ayoungco.com">Contact</a>
<a class="terminal-btn" href="{{ route('home') }}">Return Home</a>
</div>
</section>
</main>
</body>
</html>
15 changes: 12 additions & 3 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('partials.head', ['title' => config('app.name')])
@include('partials.head', ['title' => 'Adam Young, digital architect, project manager'])
</head>
<body>
<main class="terminal-shell flex min-h-screen items-center">
<section class="terminal-panel w-full">
<div class="flex flex-wrap items-center justify-between gap-3">
<img src="{{ app(\App\Support\SiteSettings::class)->logoUrl() }}" alt="{{ config('app.name') }}" class="logo-adaptive h-16 w-auto">
<div class="flex items-center gap-3">
<span class="terminal-divider inline-flex h-16 w-16 items-center justify-center rounded-full border text-xl font-bold tracking-widest">
AY
</span>
<div>
<p class="text-xs uppercase tracking-[0.3em] text-zinc-400">ayoungco @ main</p>
<p class="text-sm text-zinc-300">Adam Young monogram</p>
</div>
</div>
<button type="button" data-theme-toggle class="terminal-btn terminal-btn-accent text-xs">Switch to Dark</button>
</div>

@if (session('status'))
<p class="mt-6 border border-emerald-500 bg-emerald-950 p-3 text-emerald-300">{{ session('status') }}</p>
@endif

<h1 class="terminal-title mt-6">{{ $siteSettings['scanner_title'] }}</h1>
<h1 class="terminal-title mt-6">Adam Young, digital architect, project manager</h1>
<p class="terminal-muted mt-3 max-w-2xl">
{{ $siteSettings['scanner_tagline'] }}
</p>

<div class="mt-6 flex flex-wrap gap-2">
<a class="terminal-btn terminal-btn-accent" href="{{ route('login') }}">Log in</a>
<a class="terminal-btn" href="{{ route('company') }}">AYOUNGCO, LLC</a>
@auth
<a class="terminal-btn" href="{{ url('/dashboard') }}">Dashboard</a>
@else
Expand Down
5 changes: 5 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
return view('welcome');
})->name('home');


Route::get('/company', function () {
return view('company');
})->name('company');

Route::get('dashboard', function () {
$items = Item::query()
->latest('created_at')
Expand Down