Publish CMS content on public routes with responsive media, accessibility checks, and deterministic visual baselines. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
@extends('layouts.public')
|
|
|
|
@section('content')
|
|
<div class="container-amare space-y-6">
|
|
<h1 class="text-4xl font-semibold text-amare-text">Contato</h1>
|
|
<p class="max-w-2xl text-amare-text-muted">
|
|
Em breve você poderá enviar um briefing por aqui. Enquanto isso, fale conosco pelos canais abaixo.
|
|
</p>
|
|
<div class="space-y-2 text-amare-text-muted">
|
|
@if ($siteSettings->email)
|
|
<p><a href="mailto:{{ $siteSettings->email }}" class="text-amare-accent hover:text-amare-accent-hover">{{ $siteSettings->email }}</a></p>
|
|
@endif
|
|
@if ($siteSettings->phone)
|
|
<p>{{ $siteSettings->phone }}</p>
|
|
@endif
|
|
@if ($siteSettings->city)
|
|
<p>{{ $siteSettings->city }}</p>
|
|
@endif
|
|
@foreach ($siteSettings->social_links ?? [] as $network => $url)
|
|
@if (filled($url))
|
|
<p>
|
|
<a href="{{ $url }}" class="text-amare-accent hover:text-amare-accent-hover" rel="noopener noreferrer" target="_blank">{{ ucfirst((string) $network) }}</a>
|
|
</p>
|
|
@endif
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
@endsection
|