@extends('layouts.app') @section('title', 'Your apps · AGS Account') @section('content')

Welcome back{{ $user->name ? ', ' . explode(' ', $user->name)[0] : '' }}.

Pick an app to launch. You're already signed in — no extra step.

@if ($apps->isEmpty())

No apps configured yet. Visit the admin to register Vocab, Math, and Forma.

@else
@foreach ($apps as $app)
{{ $app->icon ?: '✦' }}

{{ $app->name }}

{{ $app->description }}

LAUNCH →

@endforeach
@endif @endsection