Compare commits
15 Commits
feature/re
...
feat/front
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b4e6a7d1c | |||
| f5830930bc | |||
| 8343867072 | |||
| 8a12b7d82c | |||
| 246410803d | |||
| af8484c74e | |||
| 35bc5a59d9 | |||
| 27711ad0c2 | |||
| af31738021 | |||
| 286522d8a2 | |||
| 3e68192cf3 | |||
| 1a31dd1cf6 | |||
| 9060036024 | |||
| 7f4ea01f4b | |||
| cf1589c916 |
@@ -2,6 +2,7 @@ APP_NAME=Amare
|
|||||||
APP_ENV=local
|
APP_ENV=local
|
||||||
APP_KEY=
|
APP_KEY=
|
||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
|
# Staging/production: set APP_URL to the public HTTPS origin (e.g. https://staging.example.com).
|
||||||
APP_URL=http://localhost
|
APP_URL=http://localhost
|
||||||
|
|
||||||
APP_LOCALE=pt_BR
|
APP_LOCALE=pt_BR
|
||||||
@@ -38,6 +39,10 @@ SESSION_LIFETIME=120
|
|||||||
SESSION_ENCRYPT=false
|
SESSION_ENCRYPT=false
|
||||||
SESSION_PATH=/
|
SESSION_PATH=/
|
||||||
SESSION_DOMAIN=null
|
SESSION_DOMAIN=null
|
||||||
|
# Staging/production behind HTTPS (Dokploy Traefik): SESSION_SECURE_COOKIE=true
|
||||||
|
SESSION_SECURE_COOKIE=false
|
||||||
|
SESSION_HTTP_ONLY=true
|
||||||
|
SESSION_SAME_SITE=lax
|
||||||
|
|
||||||
BROADCAST_CONNECTION=log
|
BROADCAST_CONNECTION=log
|
||||||
FILESYSTEM_DISK=local
|
FILESYSTEM_DISK=local
|
||||||
|
|||||||
82
.github/workflows/deploy-staging.yml
vendored
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
name: Deploy staging
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: [CI]
|
||||||
|
types: [completed]
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: deploy-staging
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: ghcr.io
|
||||||
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
name: publish-and-deploy-staging
|
||||||
|
if: >-
|
||||||
|
github.event.workflow_run.conclusion == 'success' &&
|
||||||
|
github.event.workflow_run.event == 'push' &&
|
||||||
|
github.event.workflow_run.head_branch == 'main'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout deployed SHA
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.workflow_run.head_sha }}
|
||||||
|
|
||||||
|
- name: Set image metadata
|
||||||
|
id: meta
|
||||||
|
run: |
|
||||||
|
SHA="${{ github.event.workflow_run.head_sha }}"
|
||||||
|
SHORT_SHA="${SHA:0:7}"
|
||||||
|
IMAGE="${REGISTRY}/${IMAGE_NAME}"
|
||||||
|
IMAGE="$(echo "$IMAGE" | tr '[:upper:]' '[:lower:]')"
|
||||||
|
echo "sha=${SHA}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "short_sha=${SHORT_SHA}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "image=${IMAGE}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Log in to GHCR
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Build and push SHA + staging tags
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
${{ steps.meta.outputs.image }}:${{ steps.meta.outputs.sha }}
|
||||||
|
${{ steps.meta.outputs.image }}:staging
|
||||||
|
cache-from: type=gha
|
||||||
|
cache-to: type=gha,mode=max
|
||||||
|
|
||||||
|
- name: Deploy staging on Dokploy
|
||||||
|
env:
|
||||||
|
DOKPLOY_URL: ${{ secrets.DOKPLOY_URL }}
|
||||||
|
DOKPLOY_API_KEY: ${{ secrets.DOKPLOY_API_KEY }}
|
||||||
|
DOKPLOY_COMPOSE_ID: ${{ secrets.DOKPLOY_STAGING_COMPOSE_ID }}
|
||||||
|
DEPLOY_TITLE: "staging ${{ steps.meta.outputs.short_sha }}"
|
||||||
|
run: |
|
||||||
|
chmod +x scripts/deploy/dokploy-deploy.sh
|
||||||
|
./scripts/deploy/dokploy-deploy.sh
|
||||||
|
|
||||||
|
- name: Smoke staging
|
||||||
|
env:
|
||||||
|
SMOKE_BASE_URL: ${{ secrets.STAGING_URL }}
|
||||||
|
run: |
|
||||||
|
chmod +x scripts/deploy/smoke.sh
|
||||||
|
./scripts/deploy/smoke.sh
|
||||||
84
.github/workflows/promote-production.yml
vendored
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
name: Promote production
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
sha:
|
||||||
|
description: Full git SHA already published to GHCR (same digest used by staging)
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
confirm:
|
||||||
|
description: Type PRODUCTION to confirm promotion of the given SHA
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: deploy-production
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: ghcr.io
|
||||||
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
promote:
|
||||||
|
name: promote-production
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Guard confirmation
|
||||||
|
run: |
|
||||||
|
if [ "${{ inputs.confirm }}" != "PRODUCTION" ]; then
|
||||||
|
echo "Confirmation must be exactly PRODUCTION" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Checkout repository scripts
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set image metadata
|
||||||
|
id: meta
|
||||||
|
run: |
|
||||||
|
SHA="${{ inputs.sha }}"
|
||||||
|
SHORT_SHA="${SHA:0:7}"
|
||||||
|
IMAGE="${REGISTRY}/${IMAGE_NAME}"
|
||||||
|
IMAGE="$(echo "$IMAGE" | tr '[:upper:]' '[:lower:]')"
|
||||||
|
echo "sha=${SHA}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "short_sha=${SHORT_SHA}" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "image=${IMAGE}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Log in to GHCR
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.REGISTRY }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Point :production at existing SHA digest (no rebuild)
|
||||||
|
run: |
|
||||||
|
docker buildx imagetools create \
|
||||||
|
--tag "${{ steps.meta.outputs.image }}:production" \
|
||||||
|
"${{ steps.meta.outputs.image }}:${{ steps.meta.outputs.sha }}"
|
||||||
|
|
||||||
|
- name: Deploy production on Dokploy
|
||||||
|
env:
|
||||||
|
DOKPLOY_URL: ${{ secrets.DOKPLOY_URL }}
|
||||||
|
DOKPLOY_API_KEY: ${{ secrets.DOKPLOY_API_KEY }}
|
||||||
|
DOKPLOY_COMPOSE_ID: ${{ secrets.DOKPLOY_PRODUCTION_COMPOSE_ID }}
|
||||||
|
DEPLOY_TITLE: "production ${{ steps.meta.outputs.short_sha }}"
|
||||||
|
run: |
|
||||||
|
chmod +x scripts/deploy/dokploy-deploy.sh
|
||||||
|
./scripts/deploy/dokploy-deploy.sh
|
||||||
|
|
||||||
|
- name: Smoke production
|
||||||
|
env:
|
||||||
|
SMOKE_BASE_URL: ${{ secrets.PRODUCTION_URL }}
|
||||||
|
run: |
|
||||||
|
chmod +x scripts/deploy/smoke.sh
|
||||||
|
./scripts/deploy/smoke.sh
|
||||||
3
.husky/pre-commit
Executable file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
composer pint:check && composer phpstan
|
||||||
33
.husky/pre-push
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# Abort push when the test database is unreachable, so broken code never
|
||||||
|
# reaches CI. Test DB settings come from phpunit.xml.
|
||||||
|
php -r '
|
||||||
|
$xml = @simplexml_load_file("phpunit.xml");
|
||||||
|
if ($xml === false) {
|
||||||
|
fwrite(STDERR, "phpunit.xml not found — aborting pre-push.\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
$defaults = ["DB_HOST" => "127.0.0.1", "DB_PORT" => "5432", "DB_DATABASE" => "amare_test", "DB_USERNAME" => "amare", "DB_PASSWORD" => "secret"];
|
||||||
|
$env = [];
|
||||||
|
foreach ($xml->php->env as $node) {
|
||||||
|
$name = (string) $node["name"];
|
||||||
|
if (isset($defaults[$name])) {
|
||||||
|
$env[$name] = (string) $node["value"];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$config = array_merge($defaults, $env);
|
||||||
|
|
||||||
|
$dsn = sprintf("pgsql:host=%s;port=%s;dbname=%s", $config["DB_HOST"], $config["DB_PORT"], $config["DB_DATABASE"]);
|
||||||
|
try {
|
||||||
|
new PDO($dsn, $config["DB_USERNAME"], $config["DB_PASSWORD"], [PDO::ATTR_TIMEOUT => 3]);
|
||||||
|
} catch (PDOException $e) {
|
||||||
|
fwrite(STDERR, "\033[31mPostgreSQL is unreachable on {$config["DB_HOST"]}:{$config["DB_PORT"]} (db: {$config["DB_DATABASE"]}).\033[0m\n");
|
||||||
|
fwrite(STDERR, "Start it with: docker compose up -d\n");
|
||||||
|
fwrite(STDERR, "Then retry the push.\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
' || exit 1
|
||||||
|
|
||||||
|
composer test:unit && composer test:feature
|
||||||
@@ -12,5 +12,6 @@ related_targets: ["resources/views/pages/services/index.blade.php","resources/vi
|
|||||||
- **Action, proof, and constraints:** ação principal é enviar briefing inicial. Prova disponível: cinco depoimentos reais de casamentos, com nomes e datas; publicação depende de autorização final. Não inventar cases corporativos, credenciais ou resultados. Fotografias permanecem ilustrativas e marcadas até chegada de acervo autorizado.
|
- **Action, proof, and constraints:** ação principal é enviar briefing inicial. Prova disponível: cinco depoimentos reais de casamentos, com nomes e datas; publicação depende de autorização final. Não inventar cases corporativos, credenciais ou resultados. Fotografias permanecem ilustrativas e marcadas até chegada de acervo autorizado.
|
||||||
- **Chosen direction:** “Dossiê Editorial do Evento”. Home funciona como capa e índice; serviços viram capítulos, portfólio vira cadernos de caso, sobre vira perfil editorial e contato vira ficha de briefing. Sistema visual global segue Heritage Editorial em DESIGN.md.
|
- **Chosen direction:** “Dossiê Editorial do Evento”. Home funciona como capa e índice; serviços viram capítulos, portfólio vira cadernos de caso, sobre vira perfil editorial e contato vira ficha de briefing. Sistema visual global segue Heritage Editorial em DESIGN.md.
|
||||||
- **Memorable moment:** coração facetado atua como selo editorial enquanto índice discreto acompanha capítulos e deixa serviço, método e próximo passo visíveis sem transformar página em dashboard.
|
- **Memorable moment:** coração facetado atua como selo editorial enquanto índice discreto acompanha capítulos e deixa serviço, método e próximo passo visíveis sem transformar página em dashboard.
|
||||||
|
- **Motion thesis (Dossiê vivo):** Home recebe abertura autoral (selo → título → recorte de imagem → CTAs, ≤800ms). Índice lateral no desktop e linha de progresso no mobile acompanham capítulos. Serviços, portfólio e sobre usam abertura curta e revelações discretas; contato, privacidade e erros permanecem quase estáticos. Sem parallax, loops, bounce ou scroll-jacking. `prefers-reduced-motion` entrega estado final imediato.
|
||||||
- **Responsive and interaction:** spreads assimétricos no desktop; sequência linear no mobile. CTAs recorrentes, navegação clara, formulário com loading, erro e sucesso, foco visível e suporte a movimento reduzido.
|
- **Responsive and interaction:** spreads assimétricos no desktop; sequência linear no mobile. CTAs recorrentes, navegação clara, formulário com loading, erro e sucesso, foco visível e suporte a movimento reduzido.
|
||||||
- **Unresolved:** logo transparente ou vetorial; fotografias autorizadas; WhatsApp, e-mail e Instagram oficiais; textos jurídicos; autorização dos depoimentos; provas reais de eventos corporativos.
|
- **Unresolved:** logo transparente ou vetorial; fotografias autorizadas; WhatsApp, e-mail e Instagram oficiais; textos jurídicos; autorização dos depoimentos; provas reais de eventos corporativos.
|
||||||
|
|||||||
11
AGENTS.md
@@ -15,6 +15,17 @@ This is a Laravel 13 application for an event-planning consultancy. Application
|
|||||||
|
|
||||||
Feature and browser tests require the `amare_test` PostgreSQL database configured in `phpunit.xml`.
|
Feature and browser tests require the `amare_test` PostgreSQL database configured in `phpunit.xml`.
|
||||||
|
|
||||||
|
## Worktrees
|
||||||
|
|
||||||
|
Always work in a git worktree created from the `main` ref — never modify `main` directly and never commit from the primary working tree. Create a dedicated worktree per feature/branch with `git worktree add -b <branch> <path> main`. On finishing work, create a PR, watch CI until green, then merge it. Clean up the worktree with `git worktree remove` after merge.
|
||||||
|
|
||||||
|
## Git Hooks (husky)
|
||||||
|
|
||||||
|
Hooks live in `.husky/` and auto-install on any plain `npm install` via the `prepare` script. Note `composer setup` runs `npm install --ignore-scripts`, which skips hook installation — after setup, run `npm install` once (or `npx husky`) to activate hooks.
|
||||||
|
|
||||||
|
- `pre-commit`: runs `composer pint:check` and `composer phpstan`.
|
||||||
|
- `pre-push`: gates on the `amare_test` database (settings parsed from `phpunit.xml`), blocks the push with a `docker compose up -d` hint when Postgres is unreachable, then runs `composer test:unit` and `composer test:feature`. Browser tests are CI-only (FrankenPHP container).
|
||||||
|
|
||||||
## Coding Style & Naming Conventions
|
## Coding Style & Naming Conventions
|
||||||
|
|
||||||
Follow PSR-4 and Laravel conventions: PascalCase classes, camelCase methods, and snake_case database columns. Use four spaces (two in YAML, except four in Compose files), LF endings, and UTF-8 as defined by `.editorconfig`. Every project-owned PHP file must place `declare(strict_types=1);` immediately after `<?php`. Keep domain code independent of Filament and Livewire. Run `composer pint` to format and `composer phpstan` before review.
|
Follow PSR-4 and Laravel conventions: PascalCase classes, camelCase methods, and snake_case database columns. Use four spaces (two in YAML, except four in Compose files), LF endings, and UTF-8 as defined by `.editorconfig`. Every project-owned PHP file must place `declare(strict_types=1);` immediately after `<?php`. Keep domain code independent of Filament and Livewire. Run `composer pint` to format and `composer phpstan` before review.
|
||||||
|
|||||||
@@ -125,3 +125,10 @@ Após `php artisan db:seed`:
|
|||||||
- [SPEC.md](SPEC.md) — especificação do produto
|
- [SPEC.md](SPEC.md) — especificação do produto
|
||||||
- [docs/adr/](docs/adr/) — ADRs aceitas
|
- [docs/adr/](docs/adr/) — ADRs aceitas
|
||||||
- [docs/conventions/php-strict-types.md](docs/conventions/php-strict-types.md) — convenção de strict types
|
- [docs/conventions/php-strict-types.md](docs/conventions/php-strict-types.md) — convenção de strict types
|
||||||
|
- [docs/deployment/dokploy.md](docs/deployment/dokploy.md) — deploy staging/produção no Dokploy + GHCR
|
||||||
|
|
||||||
|
## Deploy (Dokploy)
|
||||||
|
|
||||||
|
Staging publica automaticamente após CI verde em `main` (imagem GHCR por SHA + alias `:staging`). Produção promove a **mesma digest** com workflow manual `Promote production` (sem rebuild).
|
||||||
|
|
||||||
|
Ver runbook completo: [docs/deployment/dokploy.md](docs/deployment/dokploy.md).
|
||||||
|
|||||||
@@ -21,6 +21,8 @@ final readonly class PageMeta
|
|||||||
public ?string $ogImageUrl = null,
|
public ?string $ogImageUrl = null,
|
||||||
public ?string $ogImageAlt = null,
|
public ?string $ogImageAlt = null,
|
||||||
public ?array $jsonLd = null,
|
public ?array $jsonLd = null,
|
||||||
|
public string $siteName = '',
|
||||||
|
public string $robots = 'index, follow',
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -44,6 +46,7 @@ final readonly class PageMeta
|
|||||||
ogImageUrl: $ogImageUrl ?? self::defaultOgImageUrl($settings),
|
ogImageUrl: $ogImageUrl ?? self::defaultOgImageUrl($settings),
|
||||||
ogImageAlt: $ogImageAlt ?? $settings->default_og_image_alt,
|
ogImageAlt: $ogImageAlt ?? $settings->default_og_image_alt,
|
||||||
jsonLd: $jsonLd,
|
jsonLd: $jsonLd,
|
||||||
|
siteName: (string) $settings->brand_name,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -77,9 +80,49 @@ final readonly class PageMeta
|
|||||||
ogImageUrl: $ogImageUrl,
|
ogImageUrl: $ogImageUrl,
|
||||||
ogImageAlt: $ogImageAlt,
|
ogImageAlt: $ogImageAlt,
|
||||||
jsonLd: $jsonLd,
|
jsonLd: $jsonLd,
|
||||||
|
siteName: (string) $settings->brand_name,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build the metadata for branded error pages (404/500).
|
||||||
|
*
|
||||||
|
* Error pages carry no canonical, are excluded from search indexes and use
|
||||||
|
* the page name suffixed with the brand name as their title.
|
||||||
|
*/
|
||||||
|
public static function forErrorPage(
|
||||||
|
SiteSetting $settings,
|
||||||
|
int $status = 404,
|
||||||
|
): self {
|
||||||
|
[$title, $description] = $status === 500
|
||||||
|
? ['Algo deu errado', 'Não foi possível concluir o pedido. Tente novamente em instantes.']
|
||||||
|
: ['Página não encontrada', 'A página que você procura não existe ou foi movida.'];
|
||||||
|
|
||||||
|
return new self(
|
||||||
|
title: trim($title).' - '.$settings->brand_name,
|
||||||
|
description: $description,
|
||||||
|
canonical: '',
|
||||||
|
robots: 'noindex, nofollow',
|
||||||
|
siteName: (string) $settings->brand_name,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the brand name to a page title when it is not already present.
|
||||||
|
*/
|
||||||
|
public static function withBrandSuffix(string $title, SiteSetting $settings): string
|
||||||
|
{
|
||||||
|
$brand = filled($settings->default_meta_title)
|
||||||
|
? (string) $settings->default_meta_title
|
||||||
|
: (string) $settings->brand_name;
|
||||||
|
|
||||||
|
if (str_contains($title, $brand)) {
|
||||||
|
return $title;
|
||||||
|
}
|
||||||
|
|
||||||
|
return trim($title).' - '.$brand;
|
||||||
|
}
|
||||||
|
|
||||||
private static function defaultTitle(SiteSetting $settings): string
|
private static function defaultTitle(SiteSetting $settings): string
|
||||||
{
|
{
|
||||||
return filled($settings->default_meta_title)
|
return filled($settings->default_meta_title)
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ use BackedEnum;
|
|||||||
use Filament\Actions\Action;
|
use Filament\Actions\Action;
|
||||||
use Filament\Actions\ActionGroup;
|
use Filament\Actions\ActionGroup;
|
||||||
use Filament\Forms\Components\KeyValue;
|
use Filament\Forms\Components\KeyValue;
|
||||||
|
use Filament\Forms\Components\Repeater;
|
||||||
|
use Filament\Forms\Components\TagsInput;
|
||||||
use Filament\Forms\Components\Textarea;
|
use Filament\Forms\Components\Textarea;
|
||||||
use Filament\Forms\Components\TextInput;
|
use Filament\Forms\Components\TextInput;
|
||||||
use Filament\Forms\Components\Toggle;
|
use Filament\Forms\Components\Toggle;
|
||||||
@@ -135,6 +137,8 @@ class ManageSiteSettings extends Page
|
|||||||
->label('Nome da marca')
|
->label('Nome da marca')
|
||||||
->required()
|
->required()
|
||||||
->maxLength(255),
|
->maxLength(255),
|
||||||
|
PublicImageUploadRules::fileUpload('logo_path', 'Logo da marca', 'content/logo'),
|
||||||
|
PublicImageUploadRules::altTextField('logo_alt', 'logo_path', 'Texto alternativo do logo'),
|
||||||
TextInput::make('hero_eyebrow')
|
TextInput::make('hero_eyebrow')
|
||||||
->label('Eyebrow do hero')
|
->label('Eyebrow do hero')
|
||||||
->maxLength(255),
|
->maxLength(255),
|
||||||
@@ -147,14 +151,62 @@ class ManageSiteSettings extends Page
|
|||||||
->required()
|
->required()
|
||||||
->rows(3),
|
->rows(3),
|
||||||
TextInput::make('hero_cta_label')
|
TextInput::make('hero_cta_label')
|
||||||
->label('Texto do CTA')
|
->label('Texto do CTA principal')
|
||||||
->required()
|
->required()
|
||||||
->maxLength(255),
|
->maxLength(255),
|
||||||
|
TextInput::make('hero_secondary_cta_label')
|
||||||
|
->label('Texto do CTA secundário')
|
||||||
|
->maxLength(255),
|
||||||
|
Textarea::make('hero_note')
|
||||||
|
->label('Nota do hero')
|
||||||
|
->rows(2),
|
||||||
Textarea::make('about_summary')
|
Textarea::make('about_summary')
|
||||||
->label('Resumo institucional')
|
->label('Resumo institucional')
|
||||||
->rows(3),
|
->rows(3),
|
||||||
])
|
])
|
||||||
->columns(2),
|
->columns(2),
|
||||||
|
Section::make('Manifesto editorial')
|
||||||
|
->schema([
|
||||||
|
TextInput::make('manifesto_title')
|
||||||
|
->label('Título do manifesto')
|
||||||
|
->maxLength(255),
|
||||||
|
Textarea::make('manifesto_lead')
|
||||||
|
->label('Lead do manifesto')
|
||||||
|
->rows(3),
|
||||||
|
Textarea::make('manifesto_body')
|
||||||
|
->label('Corpo do manifesto')
|
||||||
|
->rows(4),
|
||||||
|
]),
|
||||||
|
Section::make('Método')
|
||||||
|
->schema([
|
||||||
|
Textarea::make('method_intro')
|
||||||
|
->label('Introdução do método')
|
||||||
|
->rows(2),
|
||||||
|
Repeater::make('method_steps')
|
||||||
|
->label('Passos do método')
|
||||||
|
->schema([
|
||||||
|
TextInput::make('title')
|
||||||
|
->label('Título')
|
||||||
|
->required()
|
||||||
|
->maxLength(255),
|
||||||
|
Textarea::make('body')
|
||||||
|
->label('Descrição')
|
||||||
|
->required()
|
||||||
|
->rows(2),
|
||||||
|
])
|
||||||
|
->defaultItems(0)
|
||||||
|
->maxItems(4)
|
||||||
|
->reorderable()
|
||||||
|
->columnSpanFull(),
|
||||||
|
]),
|
||||||
|
Section::make('Princípios')
|
||||||
|
->schema([
|
||||||
|
TagsInput::make('principles')
|
||||||
|
->label('Princípios')
|
||||||
|
->placeholder('Adicionar princípio')
|
||||||
|
->helperText('Até quatro princípios editoriais.')
|
||||||
|
->columnSpanFull(),
|
||||||
|
]),
|
||||||
Section::make('Contato')
|
Section::make('Contato')
|
||||||
->schema([
|
->schema([
|
||||||
TextInput::make('email')
|
TextInput::make('email')
|
||||||
|
|||||||
116
app/Http/Controllers/PublicSite/ContactController.php
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\PublicSite;
|
||||||
|
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use App\Http\Requests\PublicSite\ContactBriefingRequest;
|
||||||
|
use App\Mail\ContactBriefing;
|
||||||
|
use App\Mail\ContactBriefingConfirmation;
|
||||||
|
use App\Models\SiteSetting;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
use Illuminate\Support\Facades\Mail;
|
||||||
|
use Throwable;
|
||||||
|
|
||||||
|
final class ContactController extends Controller
|
||||||
|
{
|
||||||
|
private const string DUPLICATE_SESSION_KEY = 'contact_briefing_hash';
|
||||||
|
|
||||||
|
public function store(ContactBriefingRequest $request): RedirectResponse
|
||||||
|
{
|
||||||
|
if (filled($request->input('empresa'))) {
|
||||||
|
return $this->success();
|
||||||
|
}
|
||||||
|
|
||||||
|
$validated = $request->validated();
|
||||||
|
unset($validated['privacidade']);
|
||||||
|
|
||||||
|
if ($this->isDuplicate($validated)) {
|
||||||
|
return $this->success();
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->rememberSubmission($validated);
|
||||||
|
|
||||||
|
$settings = SiteSetting::instance();
|
||||||
|
$fields = $this->buildFields($validated);
|
||||||
|
|
||||||
|
$this->dispatchEmails($settings, $validated['nome'], $validated['email'], $fields);
|
||||||
|
|
||||||
|
return $this->success();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $validated
|
||||||
|
*/
|
||||||
|
private function buildFields(array $validated): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'Nome' => (string) $validated['nome'],
|
||||||
|
'E-mail' => (string) $validated['email'],
|
||||||
|
'Telefone/WhatsApp' => (string) $validated['telefone'],
|
||||||
|
'Tipo de evento' => (string) $validated['tipo_evento'],
|
||||||
|
'Data ou período desejado' => isset($validated['data_periodo']) ? (string) $validated['data_periodo'] : null,
|
||||||
|
'Cidade' => (string) $validated['cidade'],
|
||||||
|
'Número estimado de convidados' => isset($validated['convidados']) ? (string) $validated['convidados'] : null,
|
||||||
|
'Serviço de interesse' => isset($validated['servico_interesse']) ? (string) $validated['servico_interesse'] : null,
|
||||||
|
'Mensagem' => (string) $validated['mensagem'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $validated
|
||||||
|
*/
|
||||||
|
private function isDuplicate(array $validated): bool
|
||||||
|
{
|
||||||
|
$hash = $this->hash($validated);
|
||||||
|
|
||||||
|
return session()->get(self::DUPLICATE_SESSION_KEY) === $hash;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $validated
|
||||||
|
*/
|
||||||
|
private function rememberSubmission(array $validated): void
|
||||||
|
{
|
||||||
|
session()->put(self::DUPLICATE_SESSION_KEY, $this->hash($validated));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $validated
|
||||||
|
*/
|
||||||
|
private function hash(array $validated): string
|
||||||
|
{
|
||||||
|
return hash('sha256', serialize($validated));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $fields
|
||||||
|
*/
|
||||||
|
private function dispatchEmails(SiteSetting $settings, string $name, string $email, array $fields): void
|
||||||
|
{
|
||||||
|
$attempt = function () use ($settings, $name, $email, $fields): void {
|
||||||
|
if (filled($settings->email)) {
|
||||||
|
Mail::to($settings->email)->send(new ContactBriefing($fields));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (filled(config('mail.default'))) {
|
||||||
|
Mail::to($email)->send(new ContactBriefingConfirmation($name, (string) $settings->brand_name));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
$attempt();
|
||||||
|
} catch (Throwable $exception) {
|
||||||
|
Log::error('Falha ao enviar briefing de contato', [
|
||||||
|
'exception' => $exception,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function success(): RedirectResponse
|
||||||
|
{
|
||||||
|
return redirect()->route('contact')->with('status', 'briefing-sent');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -20,7 +20,7 @@ final class PageController extends Controller
|
|||||||
'pageMeta' => PageMeta::forPage(
|
'pageMeta' => PageMeta::forPage(
|
||||||
canonical: route('about'),
|
canonical: route('about'),
|
||||||
settings: $settings,
|
settings: $settings,
|
||||||
title: 'Sobre',
|
title: PageMeta::withBrandSuffix('Sobre', $settings),
|
||||||
description: $settings->about_summary ?: ('Conheça a '.$settings->brand_name.'.'),
|
description: $settings->about_summary ?: ('Conheça a '.$settings->brand_name.'.'),
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
@@ -35,7 +35,7 @@ final class PageController extends Controller
|
|||||||
'pageMeta' => PageMeta::forPage(
|
'pageMeta' => PageMeta::forPage(
|
||||||
canonical: route('privacy'),
|
canonical: route('privacy'),
|
||||||
settings: $settings,
|
settings: $settings,
|
||||||
title: 'Política de privacidade',
|
title: PageMeta::withBrandSuffix('Política de privacidade', $settings),
|
||||||
description: 'Política de privacidade da '.$settings->brand_name.'.',
|
description: 'Política de privacidade da '.$settings->brand_name.'.',
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
@@ -50,7 +50,7 @@ final class PageController extends Controller
|
|||||||
'pageMeta' => PageMeta::forPage(
|
'pageMeta' => PageMeta::forPage(
|
||||||
canonical: route('contact'),
|
canonical: route('contact'),
|
||||||
settings: $settings,
|
settings: $settings,
|
||||||
title: 'Contato',
|
title: PageMeta::withBrandSuffix('Contato', $settings),
|
||||||
description: 'Fale com a '.$settings->brand_name.'.',
|
description: 'Fale com a '.$settings->brand_name.'.',
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ final class PortfolioController extends Controller
|
|||||||
'pageMeta' => PageMeta::forPage(
|
'pageMeta' => PageMeta::forPage(
|
||||||
canonical: route('portfolio.index'),
|
canonical: route('portfolio.index'),
|
||||||
settings: $settings,
|
settings: $settings,
|
||||||
title: 'Portfólio',
|
title: PageMeta::withBrandSuffix('Portfólio', $settings),
|
||||||
description: 'Casos reais de eventos conduzidos pela '.$settings->brand_name.'.',
|
description: 'Casos reais de eventos conduzidos pela '.$settings->brand_name.'.',
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ final class ServiceController extends Controller
|
|||||||
'pageMeta' => PageMeta::forPage(
|
'pageMeta' => PageMeta::forPage(
|
||||||
canonical: route('services.index'),
|
canonical: route('services.index'),
|
||||||
settings: $settings,
|
settings: $settings,
|
||||||
title: 'Serviços',
|
title: PageMeta::withBrandSuffix('Serviços', $settings),
|
||||||
description: 'Conheça os serviços de assessoria de eventos da '.$settings->brand_name.'.',
|
description: 'Conheça os serviços de assessoria de eventos da '.$settings->brand_name.'.',
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
|
|||||||
57
app/Http/Requests/PublicSite/ContactBriefingRequest.php
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Http\Requests\PublicSite;
|
||||||
|
|
||||||
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
|
|
||||||
|
final class ContactBriefingRequest extends FormRequest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @return array<string, array<int, string>>
|
||||||
|
*/
|
||||||
|
public function rules(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'nome' => ['required', 'string', 'max:120'],
|
||||||
|
'email' => ['required', 'email', 'max:254'],
|
||||||
|
'telefone' => ['required', 'string', 'max:40'],
|
||||||
|
'tipo_evento' => ['required', 'string', 'max:80'],
|
||||||
|
'data_periodo' => ['nullable', 'string', 'max:80'],
|
||||||
|
'cidade' => ['required', 'string', 'max:80'],
|
||||||
|
'convidados' => ['nullable', 'integer', 'min:1', 'max:100000'],
|
||||||
|
'servico_interesse' => ['nullable', 'string', 'max:120'],
|
||||||
|
'mensagem' => ['required', 'string', 'max:3000'],
|
||||||
|
'privacidade' => ['accepted'],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
|
public function messages(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'nome.required' => 'Informe seu nome completo.',
|
||||||
|
'nome.max' => 'O nome deve ter no máximo :max caracteres.',
|
||||||
|
'email.required' => 'Informe seu e-mail.',
|
||||||
|
'email.email' => 'Informe um e-mail válido.',
|
||||||
|
'email.max' => 'O e-mail deve ter no máximo :max caracteres.',
|
||||||
|
'telefone.required' => 'Informe um telefone ou WhatsApp.',
|
||||||
|
'telefone.max' => 'O telefone deve ter no máximo :max caracteres.',
|
||||||
|
'tipo_evento.required' => 'Selecione o tipo de evento.',
|
||||||
|
'tipo_evento.max' => 'O tipo de evento deve ter no máximo :max caracteres.',
|
||||||
|
'data_periodo.max' => 'A data ou período deve ter no máximo :max caracteres.',
|
||||||
|
'cidade.required' => 'Informe a cidade do evento.',
|
||||||
|
'cidade.max' => 'A cidade deve ter no máximo :max caracteres.',
|
||||||
|
'convidados.integer' => 'Informe um número de convidados válido.',
|
||||||
|
'convidados.min' => 'O número de convidados deve ser maior que zero.',
|
||||||
|
'convidados.max' => 'O número de convidados informado é inválido.',
|
||||||
|
'servico_interesse.max' => 'O serviço deve ter no máximo :max caracteres.',
|
||||||
|
'mensagem.required' => 'Conte brevemente o que você precisa.',
|
||||||
|
'mensagem.max' => 'A mensagem deve ter no máximo :max caracteres.',
|
||||||
|
'privacidade.accepted' => 'Você precisa aceitar a política de privacidade.',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
||||||
40
app/Mail/ContactBriefing.php
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Mail;
|
||||||
|
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Mail\Mailable;
|
||||||
|
use Illuminate\Mail\Mailables\Content;
|
||||||
|
use Illuminate\Mail\Mailables\Envelope;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
final class ContactBriefing extends Mailable implements ShouldQueue
|
||||||
|
{
|
||||||
|
use Queueable;
|
||||||
|
use SerializesModels;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array<string, mixed> $fields
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
public readonly array $fields,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
public function envelope(): Envelope
|
||||||
|
{
|
||||||
|
return new Envelope(
|
||||||
|
subject: 'Novo briefing de contato — Amare Assessoria',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function content(): Content
|
||||||
|
{
|
||||||
|
return new Content(
|
||||||
|
html: 'emails.contact-briefing',
|
||||||
|
text: 'emails.contact-briefing-text',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
38
app/Mail/ContactBriefingConfirmation.php
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Mail;
|
||||||
|
|
||||||
|
use Illuminate\Bus\Queueable;
|
||||||
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||||
|
use Illuminate\Mail\Mailable;
|
||||||
|
use Illuminate\Mail\Mailables\Content;
|
||||||
|
use Illuminate\Mail\Mailables\Envelope;
|
||||||
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
|
final class ContactBriefingConfirmation extends Mailable implements ShouldQueue
|
||||||
|
{
|
||||||
|
use Queueable;
|
||||||
|
use SerializesModels;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
public readonly string $name,
|
||||||
|
public readonly string $brandName,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
public function envelope(): Envelope
|
||||||
|
{
|
||||||
|
return new Envelope(
|
||||||
|
subject: 'Recebemos sua mensagem — '.$this->brandName,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function content(): Content
|
||||||
|
{
|
||||||
|
return new Content(
|
||||||
|
html: 'emails.contact-briefing-confirmation',
|
||||||
|
text: 'emails.contact-briefing-confirmation-text',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -11,17 +11,31 @@ use Illuminate\Database\Eloquent\Model;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @property array<string, string|null> $social_links
|
* @property array<string, string|null> $social_links
|
||||||
|
* @property list<array{title?: string, body?: string}>|null $method_steps
|
||||||
|
* @property list<string>|null $principles
|
||||||
* @property bool $analytics_enabled
|
* @property bool $analytics_enabled
|
||||||
* @property string|null $default_og_image_path
|
* @property string|null $default_og_image_path
|
||||||
* @property string|null $default_og_image_alt
|
* @property string|null $default_og_image_alt
|
||||||
|
* @property string|null $logo_path
|
||||||
|
* @property string|null $logo_alt
|
||||||
*/
|
*/
|
||||||
#[Fillable([
|
#[Fillable([
|
||||||
'brand_name',
|
'brand_name',
|
||||||
|
'logo_path',
|
||||||
|
'logo_alt',
|
||||||
'hero_eyebrow',
|
'hero_eyebrow',
|
||||||
'hero_title',
|
'hero_title',
|
||||||
'hero_subtitle',
|
'hero_subtitle',
|
||||||
'hero_cta_label',
|
'hero_cta_label',
|
||||||
|
'hero_secondary_cta_label',
|
||||||
|
'hero_note',
|
||||||
'about_summary',
|
'about_summary',
|
||||||
|
'manifesto_title',
|
||||||
|
'manifesto_lead',
|
||||||
|
'manifesto_body',
|
||||||
|
'method_intro',
|
||||||
|
'method_steps',
|
||||||
|
'principles',
|
||||||
'email',
|
'email',
|
||||||
'phone',
|
'phone',
|
||||||
'city',
|
'city',
|
||||||
@@ -40,21 +54,67 @@ class SiteSetting extends Model
|
|||||||
{
|
{
|
||||||
return static::query()->firstOrCreate([], [
|
return static::query()->firstOrCreate([], [
|
||||||
'brand_name' => 'Amare Assessoria',
|
'brand_name' => 'Amare Assessoria',
|
||||||
'hero_eyebrow' => 'Assessoria de eventos',
|
'hero_eyebrow' => 'Assessoria e produção de eventos · São Paulo',
|
||||||
'hero_title' => 'Celebrações com propósito',
|
'hero_title' => 'Celebrações com propósito',
|
||||||
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos.',
|
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos.',
|
||||||
'hero_cta_label' => 'Solicitar orçamento',
|
'hero_cta_label' => 'Solicitar proposta',
|
||||||
'about_summary' => 'Assessoria boutique em Fortaleza.',
|
'hero_secondary_cta_label' => 'Conheça nosso olhar',
|
||||||
'email' => 'contato@amare.local',
|
'hero_note' => 'Planejamento cuidadoso, comunicação clara e execução segura — do primeiro encontro ao último detalhe.',
|
||||||
'phone' => '(85) 99999-9999',
|
'about_summary' => 'Assessoria boutique em São Paulo - SP.',
|
||||||
'city' => 'Fortaleza, CE',
|
'manifesto_title' => 'Sofisticação que também se traduz em organização.',
|
||||||
|
'manifesto_lead' => 'Um evento memorável não nasce apenas de uma boa estética. Ele depende de decisões bem conduzidas, fornecedores alinhados e atenção constante ao que realmente importa.',
|
||||||
|
'manifesto_body' => 'A Amare combina sensibilidade e precisão para criar encontros coerentes com cada cliente, marca e ocasião — sem fórmulas prontas, excessos ou ruído.',
|
||||||
|
'method_intro' => 'Clareza em cada etapa. Tranquilidade durante todo o processo.',
|
||||||
|
'method_steps' => self::defaultMethodSteps(),
|
||||||
|
'principles' => self::defaultPrinciples(),
|
||||||
|
'email' => 'amareassessoriaeventos@gmail.com',
|
||||||
|
'phone' => '(11) 99999-9999',
|
||||||
|
'city' => 'São Paulo - SP',
|
||||||
'social_links' => [],
|
'social_links' => [],
|
||||||
'default_meta_title' => 'Amare Assessoria de Eventos',
|
'default_meta_title' => 'Amare Assessoria de Eventos',
|
||||||
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos.',
|
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos em São Paulo.',
|
||||||
'analytics_enabled' => false,
|
'analytics_enabled' => false,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list<array{title: string, body: string}>
|
||||||
|
*/
|
||||||
|
public static function defaultMethodSteps(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
[
|
||||||
|
'title' => 'Escuta',
|
||||||
|
'body' => 'Entendimento do contexto, das prioridades, do público e do que o evento precisa comunicar.',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'title' => 'Direção',
|
||||||
|
'body' => 'Definição de escopo, próximos passos, responsabilidades e critérios para orientar decisões.',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'title' => 'Produção',
|
||||||
|
'body' => 'Coordenação de cronograma, fornecedores, detalhes, alinhamentos e contingências.',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'title' => 'Execução',
|
||||||
|
'body' => 'Presença atenta no evento para que o planejado aconteça com ritmo, cuidado e segurança.',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list<string>
|
||||||
|
*/
|
||||||
|
public static function defaultPrinciples(): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'Personalização sem complicação desnecessária',
|
||||||
|
'Comunicação clara e decisões bem orientadas',
|
||||||
|
'Atenção à experiência de clientes e convidados',
|
||||||
|
'Execução responsável do início ao fim',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array<string, string|class-string>
|
* @return array<string, string|class-string>
|
||||||
*/
|
*/
|
||||||
@@ -62,6 +122,8 @@ class SiteSetting extends Model
|
|||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'social_links' => 'array',
|
'social_links' => 'array',
|
||||||
|
'method_steps' => 'array',
|
||||||
|
'principles' => 'array',
|
||||||
'analytics_enabled' => 'boolean',
|
'analytics_enabled' => 'boolean',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ namespace App\Providers;
|
|||||||
use App\Application\Data\PageMeta;
|
use App\Application\Data\PageMeta;
|
||||||
use App\Models\SiteSetting;
|
use App\Models\SiteSetting;
|
||||||
use Carbon\CarbonImmutable;
|
use Carbon\CarbonImmutable;
|
||||||
|
use Illuminate\Cache\RateLimiting\Limit;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Facades\RateLimiter;
|
||||||
use Illuminate\Support\Facades\View;
|
use Illuminate\Support\Facades\View;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
use Illuminate\View\View as ViewInstance;
|
use Illuminate\View\View as ViewInstance;
|
||||||
@@ -26,7 +29,9 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
*/
|
*/
|
||||||
public function boot(): void
|
public function boot(): void
|
||||||
{
|
{
|
||||||
|
$this->configureLivewireTemporaryUploads();
|
||||||
$this->freezeClockWhenConfigured();
|
$this->freezeClockWhenConfigured();
|
||||||
|
$this->configureRateLimiters();
|
||||||
|
|
||||||
View::composer('layouts.public', function (ViewInstance $view): void {
|
View::composer('layouts.public', function (ViewInstance $view): void {
|
||||||
$settings = $view->offsetExists('siteSettings')
|
$settings = $view->offsetExists('siteSettings')
|
||||||
@@ -46,6 +51,29 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keep Livewire/Filament temp uploads on the local disk.
|
||||||
|
*
|
||||||
|
* When FILESYSTEM_DISK=r2, Livewire would otherwise use the S3 driver and
|
||||||
|
* browser-PUT straight to R2 (CORS). Final media still uses the r2 disk via
|
||||||
|
* PublicImageUploadRules. Explicit LIVEWIRE_TEMPORARY_FILE_UPLOAD_DISK wins.
|
||||||
|
*/
|
||||||
|
private function configureLivewireTemporaryUploads(): void
|
||||||
|
{
|
||||||
|
if (filled(config('livewire.temporary_file_upload.disk'))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
config(['livewire.temporary_file_upload.disk' => 'local']);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function configureRateLimiters(): void
|
||||||
|
{
|
||||||
|
RateLimiter::for('contact-briefing', function (Request $request): Limit {
|
||||||
|
return Limit::perMinute(5)->by($request->ip().'|contact-briefing');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private function freezeClockWhenConfigured(): void
|
private function freezeClockWhenConfigured(): void
|
||||||
{
|
{
|
||||||
if ($this->app->environment('production')) {
|
if ($this->app->environment('production')) {
|
||||||
|
|||||||
@@ -12,7 +12,8 @@ return Application::configure(basePath: dirname(__DIR__))
|
|||||||
health: '/up',
|
health: '/up',
|
||||||
)
|
)
|
||||||
->withMiddleware(function (Middleware $middleware): void {
|
->withMiddleware(function (Middleware $middleware): void {
|
||||||
//
|
// Trust Traefik/Dokploy (and local reverse proxies) for X-Forwarded-* headers.
|
||||||
|
$middleware->trustProxies(at: '*');
|
||||||
})
|
})
|
||||||
->withExceptions(function (Exceptions $exceptions): void {
|
->withExceptions(function (Exceptions $exceptions): void {
|
||||||
$exceptions->shouldRenderJsonWhen(
|
$exceptions->shouldRenderJsonWhen(
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ class PortfolioCaseFactory extends Factory
|
|||||||
'slug' => str($title)->slug()->toString(),
|
'slug' => str($title)->slug()->toString(),
|
||||||
'summary' => fake()->sentence(),
|
'summary' => fake()->sentence(),
|
||||||
'event_type' => 'Casamento',
|
'event_type' => 'Casamento',
|
||||||
'city' => 'Fortaleza',
|
'city' => 'São Paulo',
|
||||||
'venue' => fake()->company(),
|
'venue' => fake()->company(),
|
||||||
'event_date' => fake()->date(),
|
'event_date' => fake()->date(),
|
||||||
'challenge' => fake()->paragraph(),
|
'challenge' => fake()->paragraph(),
|
||||||
|
|||||||
@@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
Schema::table('site_settings', function (Blueprint $table): void {
|
||||||
|
$table->string('logo_path')->nullable()->after('brand_name');
|
||||||
|
$table->string('logo_alt')->nullable()->after('logo_path');
|
||||||
|
$table->string('hero_secondary_cta_label')->nullable()->after('hero_cta_label');
|
||||||
|
$table->text('hero_note')->nullable()->after('hero_secondary_cta_label');
|
||||||
|
$table->string('manifesto_title')->nullable()->after('about_summary');
|
||||||
|
$table->text('manifesto_lead')->nullable()->after('manifesto_title');
|
||||||
|
$table->text('manifesto_body')->nullable()->after('manifesto_lead');
|
||||||
|
$table->text('method_intro')->nullable()->after('manifesto_body');
|
||||||
|
$table->jsonb('method_steps')->nullable()->after('method_intro');
|
||||||
|
$table->jsonb('principles')->nullable()->after('method_steps');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::table('site_settings', function (Blueprint $table): void {
|
||||||
|
$table->dropColumn([
|
||||||
|
'logo_path',
|
||||||
|
'logo_alt',
|
||||||
|
'hero_secondary_cta_label',
|
||||||
|
'hero_note',
|
||||||
|
'manifesto_title',
|
||||||
|
'manifesto_lead',
|
||||||
|
'manifesto_body',
|
||||||
|
'method_intro',
|
||||||
|
'method_steps',
|
||||||
|
'principles',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -8,7 +8,6 @@ use App\Models\PortfolioCase;
|
|||||||
use App\Models\PortfolioImage;
|
use App\Models\PortfolioImage;
|
||||||
use App\Models\Service;
|
use App\Models\Service;
|
||||||
use App\Models\SiteSetting;
|
use App\Models\SiteSetting;
|
||||||
use App\Models\Testimonial;
|
|
||||||
use Illuminate\Database\Seeder;
|
use Illuminate\Database\Seeder;
|
||||||
use Illuminate\Support\Carbon;
|
use Illuminate\Support\Carbon;
|
||||||
use Illuminate\Support\Facades\File;
|
use Illuminate\Support\Facades\File;
|
||||||
@@ -23,26 +22,34 @@ class ContentSeeder extends Seeder
|
|||||||
$this->seedSiteSettings();
|
$this->seedSiteSettings();
|
||||||
$this->seedServices();
|
$this->seedServices();
|
||||||
$this->seedPortfolioCases();
|
$this->seedPortfolioCases();
|
||||||
$this->seedTestimonials();
|
$this->call(TestimonialsSeeder::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function seedSiteSettings(): void
|
private function seedSiteSettings(): void
|
||||||
{
|
{
|
||||||
SiteSetting::query()->updateOrCreate([], [
|
SiteSetting::query()->updateOrCreate([], [
|
||||||
'brand_name' => 'Amare Assessoria',
|
'brand_name' => 'Amare Assessoria',
|
||||||
'hero_eyebrow' => 'Assessoria de eventos',
|
'hero_eyebrow' => 'Assessoria e produção de eventos · São Paulo',
|
||||||
'hero_title' => 'Celebrações com propósito',
|
'hero_title' => 'Celebrações com propósito',
|
||||||
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos em Fortaleza.',
|
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos em São Paulo.',
|
||||||
'hero_cta_label' => 'Solicitar orçamento',
|
'hero_cta_label' => 'Solicitar proposta',
|
||||||
'about_summary' => 'Assessoria boutique especializada em experiências memoráveis.',
|
'hero_secondary_cta_label' => 'Conheça nosso olhar',
|
||||||
'email' => 'contato@amare.local',
|
'hero_note' => 'Planejamento cuidadoso, comunicação clara e execução segura — do primeiro encontro ao último detalhe.',
|
||||||
'phone' => '(85) 99999-9999',
|
'about_summary' => 'Assessoria boutique especializada em experiências memoráveis em São Paulo.',
|
||||||
'city' => 'Fortaleza, CE',
|
'manifesto_title' => 'Sofisticação que também se traduz em organização.',
|
||||||
|
'manifesto_lead' => 'Um evento memorável não nasce apenas de uma boa estética. Ele depende de decisões bem conduzidas, fornecedores alinhados e atenção constante ao que realmente importa.',
|
||||||
|
'manifesto_body' => 'A Amare combina sensibilidade e precisão para criar encontros coerentes com cada cliente, marca e ocasião — sem fórmulas prontas, excessos ou ruído.',
|
||||||
|
'method_intro' => 'Clareza em cada etapa. Tranquilidade durante todo o processo.',
|
||||||
|
'method_steps' => SiteSetting::defaultMethodSteps(),
|
||||||
|
'principles' => SiteSetting::defaultPrinciples(),
|
||||||
|
'email' => 'amareassessoriaeventos@gmail.com',
|
||||||
|
'phone' => '(11) 99999-9999',
|
||||||
|
'city' => 'São Paulo - SP',
|
||||||
'social_links' => [
|
'social_links' => [
|
||||||
'instagram' => 'https://instagram.com/amare',
|
'instagram' => 'https://instagram.com/amare',
|
||||||
],
|
],
|
||||||
'default_meta_title' => 'Amare Assessoria de Eventos',
|
'default_meta_title' => 'Amare Assessoria de Eventos',
|
||||||
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos.',
|
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos em São Paulo.',
|
||||||
'default_og_image_path' => $this->copyFixture('og-default.jpg', 'content/og/og-default.jpg'),
|
'default_og_image_path' => $this->copyFixture('og-default.jpg', 'content/og/og-default.jpg'),
|
||||||
'default_og_image_alt' => 'Identidade visual da Amare Assessoria de Eventos',
|
'default_og_image_alt' => 'Identidade visual da Amare Assessoria de Eventos',
|
||||||
'analytics_enabled' => false,
|
'analytics_enabled' => false,
|
||||||
@@ -98,9 +105,9 @@ class ContentSeeder extends Seeder
|
|||||||
[
|
[
|
||||||
'title' => 'Casamento Ana e Lucas',
|
'title' => 'Casamento Ana e Lucas',
|
||||||
'slug' => 'casamento-ana-lucas',
|
'slug' => 'casamento-ana-lucas',
|
||||||
'summary' => 'Cerimônia ao ar livre em Fortaleza.',
|
'summary' => 'Cerimônia ao ar livre em São Paulo.',
|
||||||
'event_type' => 'Casamento',
|
'event_type' => 'Casamento',
|
||||||
'city' => 'Fortaleza',
|
'city' => 'São Paulo',
|
||||||
'venue' => 'Espaço Jardim Atlântico',
|
'venue' => 'Espaço Jardim Atlântico',
|
||||||
'event_date' => '2025-11-20',
|
'event_date' => '2025-11-20',
|
||||||
'challenge' => 'Integrar cerimônia e recepção em áreas distintas.',
|
'challenge' => 'Integrar cerimônia e recepção em áreas distintas.',
|
||||||
@@ -113,7 +120,7 @@ class ContentSeeder extends Seeder
|
|||||||
'slug' => 'lancamento-verano',
|
'slug' => 'lancamento-verano',
|
||||||
'summary' => 'Evento corporativo de lançamento de coleção.',
|
'summary' => 'Evento corporativo de lançamento de coleção.',
|
||||||
'event_type' => 'Corporativo',
|
'event_type' => 'Corporativo',
|
||||||
'city' => 'Fortaleza',
|
'city' => 'São Paulo',
|
||||||
'venue' => 'Centro de Convenções',
|
'venue' => 'Centro de Convenções',
|
||||||
'event_date' => '2025-09-10',
|
'event_date' => '2025-09-10',
|
||||||
'challenge' => 'Ativar marca em ambiente multiestação.',
|
'challenge' => 'Ativar marca em ambiente multiestação.',
|
||||||
@@ -124,10 +131,10 @@ class ContentSeeder extends Seeder
|
|||||||
[
|
[
|
||||||
'title' => 'Mini wedding Marina',
|
'title' => 'Mini wedding Marina',
|
||||||
'slug' => 'mini-wedding-marina',
|
'slug' => 'mini-wedding-marina',
|
||||||
'summary' => 'Celebração intimista à beira-mar.',
|
'summary' => 'Celebração intimista em São Paulo.',
|
||||||
'event_type' => 'Mini wedding',
|
'event_type' => 'Mini wedding',
|
||||||
'city' => 'Caucaia',
|
'city' => 'São Paulo',
|
||||||
'venue' => 'Pousada da Praia',
|
'venue' => 'Espaço intimista',
|
||||||
'event_date' => '2025-06-02',
|
'event_date' => '2025-06-02',
|
||||||
'challenge' => 'Clima e logística em área externa.',
|
'challenge' => 'Clima e logística em área externa.',
|
||||||
'solution' => 'Plano B estruturado e fornecedores locais alinhados.',
|
'solution' => 'Plano B estruturado e fornecedores locais alinhados.',
|
||||||
@@ -162,48 +169,6 @@ class ContentSeeder extends Seeder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function seedTestimonials(): void
|
|
||||||
{
|
|
||||||
$testimonials = [
|
|
||||||
[
|
|
||||||
'quote' => 'A Amare transformou nosso casamento em uma experiência inesquecível.',
|
|
||||||
'author_name' => 'Ana Souza',
|
|
||||||
'context' => 'Noiva',
|
|
||||||
'sort_order' => 1,
|
|
||||||
'is_featured' => true,
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'quote' => 'Profissionalismo do início ao fim no lançamento da nossa coleção.',
|
|
||||||
'author_name' => 'Marcos Lima',
|
|
||||||
'context' => 'Diretor de marketing',
|
|
||||||
'sort_order' => 2,
|
|
||||||
'is_featured' => true,
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'quote' => 'Cuidaram de cada detalhe com sensibilidade e precisão.',
|
|
||||||
'author_name' => 'Marina Costa',
|
|
||||||
'context' => 'Anfitriã',
|
|
||||||
'sort_order' => 3,
|
|
||||||
'is_featured' => false,
|
|
||||||
],
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($testimonials as $testimonial) {
|
|
||||||
Testimonial::query()->updateOrCreate(
|
|
||||||
[
|
|
||||||
'author_name' => $testimonial['author_name'],
|
|
||||||
'quote' => $testimonial['quote'],
|
|
||||||
],
|
|
||||||
[
|
|
||||||
...$testimonial,
|
|
||||||
'photo_path' => $this->copyFixture('testimonial.jpg', 'content/testimonials/'.str($testimonial['author_name'])->slug().'.jpg'),
|
|
||||||
'photo_alt' => 'Foto de '.$testimonial['author_name'],
|
|
||||||
'published_at' => Carbon::parse(self::SEED_TIMESTAMP),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private function copyFixture(string $fixtureName, string $destination): string
|
private function copyFixture(string $fixtureName, string $destination): string
|
||||||
{
|
{
|
||||||
$source = base_path('tests/fixtures/images/'.$fixtureName);
|
$source = base_path('tests/fixtures/images/'.$fixtureName);
|
||||||
|
|||||||
70
database/seeders/TestimonialsSeeder.php
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Database\Seeders;
|
||||||
|
|
||||||
|
use App\Models\Testimonial;
|
||||||
|
use Illuminate\Database\Seeder;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
class TestimonialsSeeder extends Seeder
|
||||||
|
{
|
||||||
|
private const PUBLISHED_AT = '2026-08-05 00:00:00';
|
||||||
|
|
||||||
|
public function run(): void
|
||||||
|
{
|
||||||
|
$testimonials = [
|
||||||
|
[
|
||||||
|
'quote' => "Mi, quero agradecer você e a sua equipe por todo empenho, atenção, vocês são abençoadas.\n\nEra nítida sua preocupação em garantir que todos os detalhes planejados desta comemoração, fossem atendidos.\n\nQue você possa transformar o grande dia das noivinhas sempre com essa sua leveza!!!\n\nMuito obrigada!",
|
||||||
|
'author_name' => 'Jeniffer e Maick',
|
||||||
|
'context' => 'Casamento · 06/12/2025',
|
||||||
|
'sort_order' => 1,
|
||||||
|
'is_featured' => true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'quote' => "Mi, eu não tenho palavras pra agradecer você e tudo que você fez por mim e por nós na realização desse sonho. Eu tô ainda extasiada com tudo que aconteceu hoje; mas tenho certeza que sem a sua ajuda, muita coisa não aconteceria.\n\nObrigada por tudo !",
|
||||||
|
'author_name' => 'Quesia e Jhonata',
|
||||||
|
'context' => 'Casamento · 21/12/2025',
|
||||||
|
'sort_order' => 2,
|
||||||
|
'is_featured' => true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'quote' => 'Que equipe!! Que equipe maravilhosa!! Obrigado pelo empenho de fazer tudo como eu queria!! Obrigado por se esforçar tanto e vir de tão longe pra realizar meu sonho!! Incríveis!!',
|
||||||
|
'author_name' => 'Milena e Weslley',
|
||||||
|
'context' => 'Casamento · 13/02/2026',
|
||||||
|
'sort_order' => 3,
|
||||||
|
'is_featured' => false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'quote' => "Gostaríamos de agradecer por todo o acompanhamento e dedicação durante a realização do nosso casamento. Foi um dia muito especial e inesquecível para nós.\n\nDesde o início, conseguimos conduzir tudo aquilo que estávamos planejando, dentro dos horários que estipulamos, o que foi ótimo, e no grande dia sua equipe nos recebeu e tratou com muito carinho, atenção e cuidado, o que fez toda a diferença para vivermos esse momento com mais tranquilidade.\n\nTambém adoramos as sugestões e ideias para as fotos, que deixaram os registros ainda mais bonitos e espontâneos, porque não iríamos lembrar de quais poses fazer na hora.\n\nObrigada por fazer parte de um momento tão importante das nossas vidas. Desejamos muito sucesso e que muitos outros casais possam viver dias especiais através do trabalho da AMARE.",
|
||||||
|
'author_name' => 'Raquel e Pedro',
|
||||||
|
'context' => 'Casamento · 09/05/2026',
|
||||||
|
'sort_order' => 4,
|
||||||
|
'is_featured' => false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'quote' => "Miiii, meu amor… você e sua equipe foram impecáveis.\n\nSuperou todas as nossas expectativas. Somos eternamente gratos por fazer nosso dia acontecer muito melhor do que imaginávamos.\n\nSempre muito atenciosa e paciente.\n\nAdoramos te conhecer e estamos muito felizes em termos escolhido você para assessorar nosso dia.",
|
||||||
|
'author_name' => 'Victoria e Pedro',
|
||||||
|
'context' => 'Casamento · 24/06/2026',
|
||||||
|
'sort_order' => 5,
|
||||||
|
'is_featured' => false,
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
DB::transaction(function () use ($testimonials): void {
|
||||||
|
foreach ($testimonials as $testimonial) {
|
||||||
|
Testimonial::query()->updateOrCreate(
|
||||||
|
['author_name' => $testimonial['author_name']],
|
||||||
|
[
|
||||||
|
'quote' => $testimonial['quote'],
|
||||||
|
'context' => $testimonial['context'],
|
||||||
|
'sort_order' => $testimonial['sort_order'],
|
||||||
|
'is_featured' => $testimonial['is_featured'],
|
||||||
|
'published_at' => self::PUBLISHED_AT,
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -37,19 +37,27 @@ class VisualContentSeeder extends Seeder
|
|||||||
{
|
{
|
||||||
SiteSetting::query()->updateOrCreate([], [
|
SiteSetting::query()->updateOrCreate([], [
|
||||||
'brand_name' => 'Amare Assessoria',
|
'brand_name' => 'Amare Assessoria',
|
||||||
'hero_eyebrow' => 'Assessoria de eventos',
|
'hero_eyebrow' => 'Assessoria e produção de eventos · São Paulo',
|
||||||
'hero_title' => 'Celebrações com propósito',
|
'hero_title' => 'Celebrações com propósito',
|
||||||
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos em Fortaleza.',
|
'hero_subtitle' => 'Planejamento completo para casamentos e eventos corporativos em São Paulo.',
|
||||||
'hero_cta_label' => 'Solicitar orçamento',
|
'hero_cta_label' => 'Solicitar proposta',
|
||||||
'about_summary' => 'Assessoria boutique especializada em experiências memoráveis.',
|
'hero_secondary_cta_label' => 'Conheça nosso olhar',
|
||||||
'email' => 'contato@amare.local',
|
'hero_note' => 'Planejamento cuidadoso, comunicação clara e execução segura — do primeiro encontro ao último detalhe.',
|
||||||
'phone' => '(85) 99999-9999',
|
'about_summary' => 'Assessoria boutique especializada em experiências memoráveis em São Paulo.',
|
||||||
'city' => 'Fortaleza, CE',
|
'manifesto_title' => 'Sofisticação que também se traduz em organização.',
|
||||||
|
'manifesto_lead' => 'Um evento memorável não nasce apenas de uma boa estética. Ele depende de decisões bem conduzidas, fornecedores alinhados e atenção constante ao que realmente importa.',
|
||||||
|
'manifesto_body' => 'A Amare combina sensibilidade e precisão para criar encontros coerentes com cada cliente, marca e ocasião — sem fórmulas prontas, excessos ou ruído.',
|
||||||
|
'method_intro' => 'Clareza em cada etapa. Tranquilidade durante todo o processo.',
|
||||||
|
'method_steps' => SiteSetting::defaultMethodSteps(),
|
||||||
|
'principles' => SiteSetting::defaultPrinciples(),
|
||||||
|
'email' => 'amareassessoriaeventos@gmail.com',
|
||||||
|
'phone' => '(11) 99999-9999',
|
||||||
|
'city' => 'São Paulo - SP',
|
||||||
'social_links' => [
|
'social_links' => [
|
||||||
'instagram' => 'https://instagram.com/amare',
|
'instagram' => 'https://instagram.com/amare',
|
||||||
],
|
],
|
||||||
'default_meta_title' => 'Amare Assessoria de Eventos',
|
'default_meta_title' => 'Amare Assessoria de Eventos',
|
||||||
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos.',
|
'default_meta_description' => 'Assessoria premium para casamentos e eventos corporativos em São Paulo.',
|
||||||
'default_og_image_path' => $this->copyFixture('og-default.jpg', 'visual/og/og-default.jpg'),
|
'default_og_image_path' => $this->copyFixture('og-default.jpg', 'visual/og/og-default.jpg'),
|
||||||
'default_og_image_alt' => 'Identidade visual da Amare Assessoria de Eventos',
|
'default_og_image_alt' => 'Identidade visual da Amare Assessoria de Eventos',
|
||||||
'analytics_enabled' => false,
|
'analytics_enabled' => false,
|
||||||
@@ -95,9 +103,9 @@ class VisualContentSeeder extends Seeder
|
|||||||
[
|
[
|
||||||
'title' => 'Casamento Ana e Lucas',
|
'title' => 'Casamento Ana e Lucas',
|
||||||
'slug' => 'casamento-ana-lucas',
|
'slug' => 'casamento-ana-lucas',
|
||||||
'summary' => 'Cerimônia ao ar livre em Fortaleza.',
|
'summary' => 'Cerimônia ao ar livre em São Paulo.',
|
||||||
'event_type' => 'Casamento',
|
'event_type' => 'Casamento',
|
||||||
'city' => 'Fortaleza',
|
'city' => 'São Paulo',
|
||||||
'venue' => 'Espaço Jardim Atlântico',
|
'venue' => 'Espaço Jardim Atlântico',
|
||||||
'event_date' => '2025-11-20',
|
'event_date' => '2025-11-20',
|
||||||
'challenge' => 'Integrar cerimônia e recepção em áreas distintas.',
|
'challenge' => 'Integrar cerimônia e recepção em áreas distintas.',
|
||||||
@@ -110,7 +118,7 @@ class VisualContentSeeder extends Seeder
|
|||||||
'slug' => 'lancamento-verano',
|
'slug' => 'lancamento-verano',
|
||||||
'summary' => 'Evento corporativo de lançamento de coleção.',
|
'summary' => 'Evento corporativo de lançamento de coleção.',
|
||||||
'event_type' => 'Corporativo',
|
'event_type' => 'Corporativo',
|
||||||
'city' => 'Fortaleza',
|
'city' => 'São Paulo',
|
||||||
'venue' => 'Centro de Convenções',
|
'venue' => 'Centro de Convenções',
|
||||||
'event_date' => '2025-09-10',
|
'event_date' => '2025-09-10',
|
||||||
'challenge' => 'Ativar marca em ambiente multiestação.',
|
'challenge' => 'Ativar marca em ambiente multiestação.',
|
||||||
@@ -146,21 +154,37 @@ class VisualContentSeeder extends Seeder
|
|||||||
|
|
||||||
private function seedTestimonials(): void
|
private function seedTestimonials(): void
|
||||||
{
|
{
|
||||||
Testimonial::query()->updateOrCreate(
|
Testimonial::query()->whereNotIn('author_name', [
|
||||||
|
'Jeniffer e Maick',
|
||||||
|
'Quesia e Jhonata',
|
||||||
|
])->delete();
|
||||||
|
|
||||||
|
foreach ([
|
||||||
[
|
[
|
||||||
'author_name' => 'Ana Souza',
|
'quote' => "Mi, quero agradecer você e a sua equipe por todo empenho, atenção, vocês são abençoadas.\n\nEra nítida sua preocupação em garantir que todos os detalhes planejados desta comemoração, fossem atendidos.\n\nQue você possa transformar o grande dia das noivinhas sempre com essa sua leveza!!!\n\nMuito obrigada!",
|
||||||
'quote' => 'A Amare transformou nosso casamento em uma experiência inesquecível.',
|
'author_name' => 'Jeniffer e Maick',
|
||||||
|
'context' => 'Casamento · 06/12/2025',
|
||||||
|
'sort_order' => 1,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'context' => 'Noiva',
|
'quote' => "Mi, eu não tenho palavras pra agradecer você e tudo que você fez por mim e por nós na realização desse sonho. Eu tô ainda extasiada com tudo que aconteceu hoje; mas tenho certeza que sem a sua ajuda, muita coisa não aconteceria.\n\nObrigada por tudo !",
|
||||||
'sort_order' => 1,
|
'author_name' => 'Quesia e Jhonata',
|
||||||
|
'context' => 'Casamento · 21/12/2025',
|
||||||
|
'sort_order' => 2,
|
||||||
|
],
|
||||||
|
] as $testimonial) {
|
||||||
|
Testimonial::query()->updateOrCreate(
|
||||||
|
['author_name' => $testimonial['author_name']],
|
||||||
|
[
|
||||||
|
...$testimonial,
|
||||||
'is_featured' => true,
|
'is_featured' => true,
|
||||||
'photo_path' => $this->copyFixture('testimonial.jpg', 'visual/testimonials/ana-souza.jpg'),
|
'photo_path' => null,
|
||||||
'photo_alt' => 'Foto de Ana Souza',
|
'photo_alt' => null,
|
||||||
'published_at' => Carbon::parse(self::SEED_TIMESTAMP),
|
'published_at' => Carbon::parse(self::SEED_TIMESTAMP),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private function copyFixture(string $fixtureName, string $destination): string
|
private function copyFixture(string $fixtureName, string $destination): string
|
||||||
{
|
{
|
||||||
|
|||||||
30
depoimentos.md
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
Mi, quero agradecer você e a sua equipe por todo empenho, atenção, vocês são abençoadas.
|
||||||
|
Era nítida sua preocupação em garantir que todos os detalhes planejados desta comemoração, fossem atendidos.
|
||||||
|
Que você possa transformar o grande dia das noivinhas sempre com essa sua leveza!!! ❤️
|
||||||
|
Muito obrigada!
|
||||||
|
Jeniffer e Maick
|
||||||
|
Casamento - 06/12/2025
|
||||||
|
----
|
||||||
|
Mi, eu não tenho palavras pra agradecer você e tudo que você fez por mim e por nós na realização desse sonho. Eu tô ainda extasiada com tudo que aconteceu hoje; mas tenho certeza que sem a sua ajuda, muita coisa não aconteceria.
|
||||||
|
Obrigada por tudo !
|
||||||
|
Quesia e Jhonata
|
||||||
|
casamento - 21/12/2025
|
||||||
|
----
|
||||||
|
@_amareassessoria
|
||||||
|
Que equipe!! Que equipe maravilhosa!! Obrigado pelo empenho de fazer tudo como eu queria!! Obrigado por se esforçar tanto e vir de tão longe pra realizar meu sonho!! Incríveis!! 😍😍
|
||||||
|
Milena e Weslley
|
||||||
|
casamento - 13/02/2026
|
||||||
|
---
|
||||||
|
Gostaríamos de agradecer por todo o acompanhamento e dedicação durante a realização do nosso casamento. Foi um dia muito especial e inesquecível para nós.
|
||||||
|
Desde o início, conseguimos conduzir tudo aquilo que estávamos planejando, dentro dos horários que estipulamos, o que foi ótimo, e no grande dia sua equipe nos recebeu e tratou com muito carinho, atenção e cuidado, o que fez toda a diferença para vivermos esse momento com mais tranquilidade.
|
||||||
|
Também adoramos as sugestões e ideias para as fotos, que deixaram os registros ainda mais bonitos e espontâneos, porque não iríamos lembrar de quais poses fazer na hora.
|
||||||
|
Obrigada por fazer parte de um momento tão importante das nossas vidas. Desejamos muito sucesso e que muitos outros casais possam viver dias especiais através do trabalho da AMARE.
|
||||||
|
Raquel e Pedro
|
||||||
|
casamento - 09/05/2026
|
||||||
|
----
|
||||||
|
Miiii, meu amor… você e sua equipe foram impecáveis.
|
||||||
|
Superou todas as nossas expectativas. Somos eternamente gratos por fazer nosso dia acontecer muito melhor do que imaginávamos.
|
||||||
|
Sempre muito atenciosa e paciente.
|
||||||
|
Adoramos te conhecer e estamos muito felizes em termos escolhido você para assessorar nosso dia. ♥️🙏🏻
|
||||||
|
Victoria e Pedro
|
||||||
|
casamento -24/06/2026
|
||||||
73
docker-compose.deploy.yml
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
# Shared Compose for Dokploy staging and production.
|
||||||
|
# Both stacks use the same file with different env:
|
||||||
|
# APP_IMAGE=ghcr.io/<owner>/<repo>
|
||||||
|
# IMAGE_TAG=staging|production|<git-sha>
|
||||||
|
# PostgreSQL is a separate Dokploy database service (not defined here).
|
||||||
|
# Traefik/Dokploy domains should target service `web` port 8000.
|
||||||
|
# App services join dokploy-network so they can resolve Dokploy-managed
|
||||||
|
# Postgres internal hosts (e.g. amare-stg-pez43e).
|
||||||
|
|
||||||
|
services:
|
||||||
|
migrate:
|
||||||
|
image: ${APP_IMAGE}:${IMAGE_TAG}
|
||||||
|
pull_policy: always
|
||||||
|
restart: "no"
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
command: ["php", "artisan", "migrate", "--force", "--no-interaction"]
|
||||||
|
networks:
|
||||||
|
- dokploy-network
|
||||||
|
|
||||||
|
web:
|
||||||
|
image: ${APP_IMAGE}:${IMAGE_TAG}
|
||||||
|
pull_policy: always
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
depends_on:
|
||||||
|
migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
expose:
|
||||||
|
- "8000"
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-fsS", "http://127.0.0.1:8000/up"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 5s
|
||||||
|
start_period: 40s
|
||||||
|
retries: 3
|
||||||
|
networks:
|
||||||
|
- dokploy-network
|
||||||
|
|
||||||
|
queue:
|
||||||
|
image: ${APP_IMAGE}:${IMAGE_TAG}
|
||||||
|
pull_policy: always
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
depends_on:
|
||||||
|
migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
command: ["php", "artisan", "queue:work", "--sleep=2", "--tries=3", "--max-time=3600"]
|
||||||
|
stop_grace_period: 60s
|
||||||
|
stop_signal: SIGTERM
|
||||||
|
networks:
|
||||||
|
- dokploy-network
|
||||||
|
|
||||||
|
scheduler:
|
||||||
|
image: ${APP_IMAGE}:${IMAGE_TAG}
|
||||||
|
pull_policy: always
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
depends_on:
|
||||||
|
migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
|
command: ["php", "artisan", "schedule:work"]
|
||||||
|
stop_grace_period: 30s
|
||||||
|
stop_signal: SIGTERM
|
||||||
|
networks:
|
||||||
|
- dokploy-network
|
||||||
|
|
||||||
|
networks:
|
||||||
|
dokploy-network:
|
||||||
|
external: true
|
||||||
@@ -7,5 +7,8 @@ Mesma imagem, comandos distintos:
|
|||||||
| web | `frankenphp run --config /etc/caddy/Caddyfile` |
|
| web | `frankenphp run --config /etc/caddy/Caddyfile` |
|
||||||
| queue | `php artisan queue:work --sleep=2 --tries=3` |
|
| queue | `php artisan queue:work --sleep=2 --tries=3` |
|
||||||
| scheduler | `php artisan schedule:work` |
|
| scheduler | `php artisan schedule:work` |
|
||||||
|
| migrate | `php artisan migrate --force` (one-shot no Compose de deploy) |
|
||||||
|
|
||||||
FrankenPHP em **modo regular** (ADR-006). Worker mode proibido no MVP.
|
FrankenPHP em **modo regular** (ADR-006). Worker mode proibido no MVP.
|
||||||
|
|
||||||
|
Deploy Dokploy (staging/produção): ver [`docker-compose.deploy.yml`](../docker-compose.deploy.yml) e [docs/deployment/dokploy.md](../docs/deployment/dokploy.md).
|
||||||
|
|||||||
300
docs/deployment/dokploy.md
Normal file
@@ -0,0 +1,300 @@
|
|||||||
|
# Deploy Dokploy (staging → production)
|
||||||
|
|
||||||
|
Runbook for operating Amare on a VPS with Dokploy connected to GitHub, publishing immutable images to GHCR.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
```
|
||||||
|
CI (main) → build FrankenPHP image → GHCR :<sha> + :staging
|
||||||
|
→ Dokploy staging compose.deploy
|
||||||
|
→ smoke /up / /admin/login
|
||||||
|
|
||||||
|
Promote (manual) → retag same digest as :production (no rebuild)
|
||||||
|
→ Dokploy production compose.deploy
|
||||||
|
→ smoke
|
||||||
|
```
|
||||||
|
|
||||||
|
| Piece | Detail |
|
||||||
|
|---|---|
|
||||||
|
| Compose file | [`docker-compose.deploy.yml`](../../docker-compose.deploy.yml) |
|
||||||
|
| Processes | `migrate` (one-shot) → `web` / `queue` / `scheduler` |
|
||||||
|
| Image | `ghcr.io/<owner>/<repo>:<sha>` (+ aliases `:staging`, `:production`) |
|
||||||
|
| Database | Dokploy PostgreSQL **per environment** (not in the app image) |
|
||||||
|
| Media | Cloudflare R2 (`FILESYSTEM_DISK=r2`), separate buckets per environment |
|
||||||
|
| Mail | Resend (`MAIL_MAILER=resend`) |
|
||||||
|
| Proxy | Dokploy Traefik → service `web` port `8000` |
|
||||||
|
|
||||||
|
## Prerequisites (manual)
|
||||||
|
|
||||||
|
1. Dokploy installed on the VPS; GitHub provider connected.
|
||||||
|
2. GHCR registry in Dokploy (`ghcr.io`) with a PAT that can **read** packages (`read:packages`). Prefer a dedicated bot/token; do not store write tokens on the VPS.
|
||||||
|
3. Two PostgreSQL services in Dokploy (staging + production), private (no public port).
|
||||||
|
4. Two R2 buckets (or prefixes) and Resend credentials for each environment as needed.
|
||||||
|
5. Domains (or temporary Dokploy/traefik.me hosts) pointing at the VPS with TLS.
|
||||||
|
|
||||||
|
## Create Compose stacks
|
||||||
|
|
||||||
|
Create **two** Dokploy Compose services (same repo, same compose path):
|
||||||
|
|
||||||
|
| Stack | Compose path | `IMAGE_TAG` | Notes |
|
||||||
|
|---|---|---|---|
|
||||||
|
| staging | `docker-compose.deploy.yml` | `staging` | Auto-deployed after CI on `main` |
|
||||||
|
| production | `docker-compose.deploy.yml` | `production` | Manual promotion only |
|
||||||
|
|
||||||
|
Dokploy Environment for each stack must set:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
APP_IMAGE=ghcr.io/<owner>/<repo>
|
||||||
|
IMAGE_TAG=staging # or production
|
||||||
|
```
|
||||||
|
|
||||||
|
Point Dokploy domain(s) at service **`web`**, port **`8000`**. Do not publish PostgreSQL or host ports for app processes.
|
||||||
|
|
||||||
|
Compose services must join the external Docker network `dokploy-network` (declared in `docker-compose.deploy.yml`) so they can resolve the Dokploy-managed Postgres internal host (e.g. `amare-stg-pez43e`). Set `DB_HOST` to that **Internal Host** from the Dokploy database UI — not a public hostname.
|
||||||
|
|
||||||
|
Source can be GitHub (so Dokploy clones the compose file) or Raw paste of `docker-compose.deploy.yml`. Prefer GitHub + fixed compose path so updates stay in sync with `main`.
|
||||||
|
|
||||||
|
## Required Laravel env (Dokploy only)
|
||||||
|
|
||||||
|
Set these in Dokploy Environment UI (written to `.env` next to the compose file). **Never** put them in GitHub Actions secrets or image layers.
|
||||||
|
|
||||||
|
```env
|
||||||
|
APP_NAME=Amare
|
||||||
|
APP_ENV=staging # or production
|
||||||
|
APP_KEY=base64:... # unique per environment — generate with php artisan key:generate --show
|
||||||
|
APP_DEBUG=false
|
||||||
|
APP_URL=https://staging.example.com
|
||||||
|
|
||||||
|
APP_LOCALE=pt_BR
|
||||||
|
APP_FALLBACK_LOCALE=pt_BR
|
||||||
|
APP_TIMEZONE=America/Fortaleza
|
||||||
|
|
||||||
|
DB_CONNECTION=pgsql
|
||||||
|
DB_HOST=<dokploy-postgres-internal-host> # Internal Host from Dokploy UI (requires dokploy-network)
|
||||||
|
DB_PORT=5432
|
||||||
|
DB_DATABASE=amare_staging
|
||||||
|
DB_USERNAME=...
|
||||||
|
DB_PASSWORD=...
|
||||||
|
|
||||||
|
SESSION_DRIVER=database
|
||||||
|
SESSION_SECURE_COOKIE=true
|
||||||
|
SESSION_HTTP_ONLY=true
|
||||||
|
SESSION_SAME_SITE=lax
|
||||||
|
CACHE_STORE=database
|
||||||
|
QUEUE_CONNECTION=database
|
||||||
|
|
||||||
|
FILESYSTEM_DISK=r2
|
||||||
|
R2_ACCESS_KEY_ID=...
|
||||||
|
R2_SECRET_ACCESS_KEY=...
|
||||||
|
R2_BUCKET=...
|
||||||
|
R2_ENDPOINT=https://<account_id>.r2.cloudflarestorage.com
|
||||||
|
R2_URL=https://media-staging.example.com
|
||||||
|
|
||||||
|
MAIL_MAILER=resend
|
||||||
|
RESEND_API_KEY=...
|
||||||
|
MAIL_FROM_ADDRESS=noreply@example.com
|
||||||
|
MAIL_FROM_NAME=Amare
|
||||||
|
|
||||||
|
LOG_LEVEL=warning
|
||||||
|
```
|
||||||
|
|
||||||
|
Trusted proxies are configured in `bootstrap/app.php` so Traefik `X-Forwarded-*` headers work for HTTPS cookies and URLs.
|
||||||
|
|
||||||
|
Livewire temporary uploads default to the **local** disk in `AppServiceProvider` (even when `FILESYSTEM_DISK=r2`), so Filament does not browser-PUT to R2. Final media still lands on R2 via `PublicImageUploadRules`. Optional override: `LIVEWIRE_TEMPORARY_FILE_UPLOAD_DISK` in Dokploy `.env` (`env_file` accepts any key — does not need a compose `environment:` entry).
|
||||||
|
|
||||||
|
### R2 CORS (public/media reads from JS)
|
||||||
|
|
||||||
|
Upload path does not need R2 CORS with the local temp-disk default. Still useful if the browser fetches R2 URLs cross-origin from JS. Origin must match `APP_URL` exactly; include `AllowedHeaders`:
|
||||||
|
|
||||||
|
```json
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"AllowedOrigins": ["https://hellomanoel.com"],
|
||||||
|
"AllowedMethods": ["GET", "PUT", "POST", "HEAD"],
|
||||||
|
"AllowedHeaders": ["*"],
|
||||||
|
"ExposeHeaders": ["ETag", "Content-Type"],
|
||||||
|
"MaxAgeSeconds": 3600
|
||||||
|
}
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
Also enable public access / custom domain for `R2_URL` so `<img>` URLs work after save.
|
||||||
|
|
||||||
|
## GitHub Actions secrets
|
||||||
|
|
||||||
|
Repository secrets used by workflows:
|
||||||
|
|
||||||
|
| Secret | Purpose |
|
||||||
|
|---|---|
|
||||||
|
| `DOKPLOY_URL` | Panel origin **without** `/api` (e.g. `https://panel.example.com`). Do not use the OpenAPI base URL that ends in `/api` — that yields `/api/api/...` and 404s. |
|
||||||
|
| `DOKPLOY_API_KEY` | API key from Dokploy profile → API/CLI |
|
||||||
|
| `DOKPLOY_STAGING_COMPOSE_ID` | Staging **Compose** service id (not an Application id) |
|
||||||
|
| `DOKPLOY_PRODUCTION_COMPOSE_ID` | Production **Compose** service id (not an Application id) |
|
||||||
|
| `STAGING_URL` | Public origin for staging smoke (e.g. `https://staging.example.com`) |
|
||||||
|
| `PRODUCTION_URL` | Public origin for production smoke |
|
||||||
|
|
||||||
|
HTTP 404 from `compose.deploy` usually means the compose id is wrong (Application id instead of Compose) or `DOKPLOY_URL` still includes `/api`.
|
||||||
|
|
||||||
|
`GITHUB_TOKEN` (automatic) publishes to GHCR with `packages:write`. No Laravel/`APP_KEY`/DB/R2/Resend secrets belong in GitHub for this pipeline.
|
||||||
|
|
||||||
|
## Workflows
|
||||||
|
|
||||||
|
### Staging (automatic)
|
||||||
|
|
||||||
|
[`.github/workflows/deploy-staging.yml`](../../.github/workflows/deploy-staging.yml)
|
||||||
|
|
||||||
|
1. Waits for workflow `CI` success on push to `main`.
|
||||||
|
2. Builds once; pushes `:<full-sha>` and `:staging`.
|
||||||
|
3. Calls Dokploy `compose.deploy` and polls until done.
|
||||||
|
4. Runs [`scripts/deploy/smoke.sh`](../../scripts/deploy/smoke.sh) against `STAGING_URL`.
|
||||||
|
|
||||||
|
### Production (manual)
|
||||||
|
|
||||||
|
[`.github/workflows/promote-production.yml`](../../.github/workflows/promote-production.yml)
|
||||||
|
|
||||||
|
1. Operator runs **Actions → Promote production**.
|
||||||
|
2. Inputs: full `sha` already on GHCR; `confirm` must be exactly `PRODUCTION`.
|
||||||
|
3. Retags the **same digest** as `:production` (no rebuild).
|
||||||
|
4. Deploys production compose + smoke.
|
||||||
|
|
||||||
|
Private repos on GitHub Free do not get Environment required reviewers; human approval is the explicit `workflow_dispatch` + confirmation string. GitHub Pro Environment reviewers are optional later.
|
||||||
|
|
||||||
|
## First admin and authorized production seeding
|
||||||
|
|
||||||
|
Seed credentials are local-only. For staging/production:
|
||||||
|
|
||||||
|
FrankenPHP sets `XDG_CONFIG_HOME=/config` (Caddy). PsySH/tinker then tries `/config/psysh`, which `appuser` cannot write — you get `Writing to directory /config/psysh is not allowed.` Override that env for the one-shot command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# From Dokploy → staging/production → Open terminal on `web` (or one-off run)
|
||||||
|
XDG_CONFIG_HOME=/tmp php artisan tinker --execute="
|
||||||
|
\$user = \\App\\Models\\User::query()->updateOrCreate(
|
||||||
|
['email' => 'admin@example.com'],
|
||||||
|
[
|
||||||
|
'name' => 'Admin',
|
||||||
|
'password' => 'use-a-strong-password',
|
||||||
|
'role' => 'admin',
|
||||||
|
'is_active' => true,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
\$user->forceFill(['email_verified_at' => now()])->save();
|
||||||
|
echo \$user->email.PHP_EOL;
|
||||||
|
"
|
||||||
|
```
|
||||||
|
|
||||||
|
Plain password is enough: `User` casts `password` to `hashed` (and skips re-hash when value already hashed). `email_verified_at` is not mass-assignable — use `forceFill` as above.
|
||||||
|
|
||||||
|
Confirm:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
XDG_CONFIG_HOME=/tmp php artisan tinker --execute="echo \\App\\Models\\User::query()->where('email', 'admin@example.com')->exists() ? 'ok' : 'missing';"
|
||||||
|
```
|
||||||
|
|
||||||
|
Never reuse `admin@amare.local` / `password`.
|
||||||
|
|
||||||
|
### Load authorized testimonials after migrations
|
||||||
|
|
||||||
|
After migrations, manually load the five authorized testimonials in **staging**, then repeat in **production**. From Dokploy, open a terminal on the environment's `web` service (or run an equivalent one-off process):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
php artisan db:seed --class='Database\Seeders\TestimonialsSeeder' --force --no-interaction
|
||||||
|
```
|
||||||
|
|
||||||
|
This seeder is safe to rerun: it overwrites canonical source-owned fields, preserves curated photo fields, and leaves unrelated testimonials unchanged. The five records are published with the approved deterministic timestamp. Upsert keys on `author_name` (no unique DB constraint); keep one row per couple before/after running.
|
||||||
|
|
||||||
|
Optional verification:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
XDG_CONFIG_HOME=/tmp php artisan tinker --execute="
|
||||||
|
\$expected = collect(['Jeniffer e Maick', 'Quesia e Jhonata', 'Milena e Weslley', 'Raquel e Pedro', 'Victoria e Pedro']);
|
||||||
|
\$rows = \\App\\Models\\Testimonial::query()->whereIn('author_name', \$expected)->get(['author_name', 'published_at'])->groupBy('author_name');
|
||||||
|
\$valid = \$expected->every(function (string \$author) use (\$rows): bool {
|
||||||
|
\$matches = \$rows->get(\$author, collect());
|
||||||
|
return \$matches->count() === 1
|
||||||
|
&& \$matches->first()->published_at?->format('Y-m-d H:i:s') === '2026-08-05 00:00:00';
|
||||||
|
});
|
||||||
|
echo (\$valid ? 'ok' : 'invalid').PHP_EOL;
|
||||||
|
"
|
||||||
|
```
|
||||||
|
|
||||||
|
Expected output: `ok`.
|
||||||
|
|
||||||
|
Do not run `DatabaseSeeder` or `ContentSeeder` in staging or production: they include local credentials and/or broad demo-content effects. Deployment workflows intentionally remain migrate-only; loading these testimonials is a deliberate manual operation in each environment.
|
||||||
|
|
||||||
|
## Backup and restore
|
||||||
|
|
||||||
|
Policy (SPEC §16.3): daily PostgreSQL backup, retention ≥ 14 days, RPO ≤ 24h, RTO ≤ 4h.
|
||||||
|
|
||||||
|
### Configure (Dokploy)
|
||||||
|
|
||||||
|
1. Settings → Destinations: add S3-compatible destination (AWS S3, R2, etc.).
|
||||||
|
2. Open each PostgreSQL service → Backup:
|
||||||
|
- Destination: the S3 destination
|
||||||
|
- Schedule: cron e.g. `0 3 * * *`
|
||||||
|
- Prefix: `amare/staging` or `amare/production`
|
||||||
|
- Enabled: on
|
||||||
|
3. Click **Test** and verify the object appears in the bucket.
|
||||||
|
4. Prefer Dokploy alerts/webhooks for backup failure if configured.
|
||||||
|
|
||||||
|
### Restore (staging rehearsal before first production promote)
|
||||||
|
|
||||||
|
1. Create a scratch database or restore into a disposable Postgres service.
|
||||||
|
2. Database → Backup → **Restore**: pick destination + backup file + target database name.
|
||||||
|
3. Point a temporary compose env at the restored DB and confirm `/up` + `/admin/login`.
|
||||||
|
4. Document the timestamp of the successful rehearsal.
|
||||||
|
|
||||||
|
Do **not** promote to production until staging restore has been proven once.
|
||||||
|
|
||||||
|
## Rollback
|
||||||
|
|
||||||
|
No rebuild. Move the environment alias to a previous SHA digest and redeploy.
|
||||||
|
|
||||||
|
### Staging
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Locally or in a one-off Actions shell with GHCR login
|
||||||
|
docker buildx imagetools create \
|
||||||
|
--tag ghcr.io/<owner>/<repo>:staging \
|
||||||
|
ghcr.io/<owner>/<repo>:<previous-sha>
|
||||||
|
|
||||||
|
# Then trigger Dokploy deploy (UI Deploy, or):
|
||||||
|
DOKPLOY_URL=... DOKPLOY_API_KEY=... DOKPLOY_COMPOSE_ID=... \
|
||||||
|
./scripts/deploy/dokploy-deploy.sh
|
||||||
|
|
||||||
|
SMOKE_BASE_URL=https://staging.example.com ./scripts/deploy/smoke.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
### Production
|
||||||
|
|
||||||
|
Same pattern with `:production` tag and production compose id / URL. Prefer re-running **Promote production** with the previous SHA and confirmation `PRODUCTION`.
|
||||||
|
|
||||||
|
If a migration is not backward-compatible, fix forward with a new SHA; keep migrations reversible when possible.
|
||||||
|
|
||||||
|
## Smoke checks
|
||||||
|
|
||||||
|
```bash
|
||||||
|
SMOKE_BASE_URL=https://staging.example.com ./scripts/deploy/smoke.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Expects HTTP 200 for `/up`, `/`, and `/admin/login`.
|
||||||
|
|
||||||
|
## Domain checklist before production promote
|
||||||
|
|
||||||
|
- [ ] Final hostname DNS → VPS
|
||||||
|
- [ ] Dokploy TLS certificate issued
|
||||||
|
- [ ] `APP_URL` matches public HTTPS origin
|
||||||
|
- [ ] `SESSION_SECURE_COOKIE=true`
|
||||||
|
- [ ] Staging smoke green on the SHA to promote
|
||||||
|
- [ ] Staging backup + restore rehearsed
|
||||||
|
- [ ] Production Postgres backup schedule enabled
|
||||||
|
- [ ] Production R2 bucket + Resend domain ready
|
||||||
|
- [ ] First admin created without seed
|
||||||
|
|
||||||
|
## Local validation of Compose
|
||||||
|
|
||||||
|
```bash
|
||||||
|
APP_IMAGE=ghcr.io/<owner>/<repo> IMAGE_TAG=staging \
|
||||||
|
docker compose -f docker-compose.deploy.yml config
|
||||||
|
```
|
||||||
|
|
||||||
|
Requires a `.env` file present (Dokploy creates it from Environment UI). For local config checks, an empty `.env` is enough.
|
||||||
262
frontend-audit.md
Normal file
@@ -0,0 +1,262 @@
|
|||||||
|
Audite e melhore integralmente este projeto do site da **Amare**, incluindo todas as rotas públicas, componentes compartilhados, formulários, navegação, conteúdo, metadados e comportamento responsivo.
|
||||||
|
|
||||||
|
Você está autorizado a executar o projeto, inspecionar o repositório e modificar diretamente o código. Não entregue somente recomendações: implemente as correções necessárias e valide o resultado.
|
||||||
|
|
||||||
|
## Objetivo
|
||||||
|
|
||||||
|
Deixar o site tecnicamente sólido, visualmente refinado e pronto para apresentação à cliente e posterior lançamento, corrigindo problemas de:
|
||||||
|
|
||||||
|
* UI e UX;
|
||||||
|
* responsividade;
|
||||||
|
* posicionamento e conteúdo;
|
||||||
|
* acessibilidade;
|
||||||
|
* conversão;
|
||||||
|
* SEO;
|
||||||
|
* performance;
|
||||||
|
* robustez;
|
||||||
|
* qualidade e manutenção do código.
|
||||||
|
|
||||||
|
## Contexto do produto
|
||||||
|
|
||||||
|
A Amare é uma empresa de assessoria, produção e organização de eventos em São Paulo.
|
||||||
|
|
||||||
|
Ela atende:
|
||||||
|
|
||||||
|
* casamentos;
|
||||||
|
* eventos sociais e celebrações particulares;
|
||||||
|
* eventos corporativos.
|
||||||
|
|
||||||
|
O site não deve transmitir que a empresa trabalha exclusivamente com casamentos.
|
||||||
|
|
||||||
|
A experiência precisa equilibrar:
|
||||||
|
|
||||||
|
* emoção, proximidade, sensibilidade e sofisticação para eventos sociais;
|
||||||
|
* organização, segurança, método, clareza e credibilidade para eventos corporativos.
|
||||||
|
|
||||||
|
O resultado deve ser editorial, contemporâneo, humano, elegante e profissional, sem parecer excessivamente romântico nem corporativo demais.
|
||||||
|
|
||||||
|
Preview de referência:
|
||||||
|
|
||||||
|
`https://amare.preview.hellomanoel.com/`
|
||||||
|
|
||||||
|
Considere os documentos existentes no repositório, especialmente `AGENTS.md`, `README.md`, `SPEC.md`, `DESIGN.md` e equivalentes, como contexto autoritativo do projeto.
|
||||||
|
|
||||||
|
## Direção visual
|
||||||
|
|
||||||
|
Preserve a identidade visual existente quando ela funcionar corretamente:
|
||||||
|
|
||||||
|
* fundos off-white ou bege claro;
|
||||||
|
* verde oliva;
|
||||||
|
* composição editorial;
|
||||||
|
* fotografias em destaque;
|
||||||
|
* espaços em branco generosos;
|
||||||
|
* EB Garamond em títulos e destaques;
|
||||||
|
* elementos minimalistas;
|
||||||
|
* animações discretas;
|
||||||
|
* aparência refinada e atemporal.
|
||||||
|
|
||||||
|
Não preserve decisões que prejudiquem usabilidade, contraste, legibilidade, acessibilidade, responsividade ou performance.
|
||||||
|
|
||||||
|
Avalie especialmente:
|
||||||
|
|
||||||
|
* uso excessivo de Garamond em textos pequenos, menus, botões e formulários;
|
||||||
|
* verdes claros com contraste insuficiente;
|
||||||
|
* CTAs discretos demais;
|
||||||
|
* espaços vazios excessivos no celular;
|
||||||
|
* imagens que reforcem somente o posicionamento de casamento;
|
||||||
|
* falta de equilíbrio entre conteúdo social e corporativo;
|
||||||
|
* inconsistência tipográfica ou de espaçamento;
|
||||||
|
* aparência de template genérico de casamento.
|
||||||
|
|
||||||
|
## Escopo da auditoria
|
||||||
|
|
||||||
|
Analise todas as rotas encontradas no código e corrija problemas relacionados a:
|
||||||
|
|
||||||
|
### Produto e conteúdo
|
||||||
|
|
||||||
|
* clareza da proposta de valor;
|
||||||
|
* equilíbrio entre eventos sociais e corporativos;
|
||||||
|
* hierarquia das informações;
|
||||||
|
* conteúdo genérico, redundante ou sem função;
|
||||||
|
* coerência entre títulos, textos, imagens e CTAs;
|
||||||
|
* clareza dos serviços;
|
||||||
|
* confiança e credibilidade;
|
||||||
|
* caminho até contato ou solicitação de proposta.
|
||||||
|
|
||||||
|
Não invente história, números, clientes, prêmios, depoimentos, equipe, serviços, telefone, e-mail ou qualquer informação não confirmada.
|
||||||
|
|
||||||
|
### UI e experiência
|
||||||
|
|
||||||
|
* navegação;
|
||||||
|
* header e footer;
|
||||||
|
* menu mobile;
|
||||||
|
* hierarquia visual;
|
||||||
|
* tipografia;
|
||||||
|
* espaçamento;
|
||||||
|
* grids;
|
||||||
|
* CTAs;
|
||||||
|
* formulários;
|
||||||
|
* estados interativos;
|
||||||
|
* consistência entre páginas;
|
||||||
|
* experiência mobile-first;
|
||||||
|
* ausência de overflow, cortes, sobreposições ou distorções;
|
||||||
|
* adaptação real do layout ao celular, e não apenas redução da versão desktop.
|
||||||
|
|
||||||
|
### Acessibilidade
|
||||||
|
|
||||||
|
Use WCAG 2.2 AA como referência prática.
|
||||||
|
|
||||||
|
Corrija problemas de:
|
||||||
|
|
||||||
|
* HTML semântico;
|
||||||
|
* hierarquia de headings;
|
||||||
|
* navegação por teclado;
|
||||||
|
* foco visível;
|
||||||
|
* contraste;
|
||||||
|
* nomes acessíveis;
|
||||||
|
* labels;
|
||||||
|
* mensagens de erro;
|
||||||
|
* áreas de toque;
|
||||||
|
* textos alternativos;
|
||||||
|
* menu mobile;
|
||||||
|
* overlays;
|
||||||
|
* preferência por redução de movimento;
|
||||||
|
* uso correto de links e botões.
|
||||||
|
|
||||||
|
Prefira HTML semântico a ARIA desnecessária.
|
||||||
|
|
||||||
|
### Formulários e conversão
|
||||||
|
|
||||||
|
Garanta, quando aplicável:
|
||||||
|
|
||||||
|
* campos e obrigatoriedade claros;
|
||||||
|
* validação adequada;
|
||||||
|
* mensagens de erro específicas;
|
||||||
|
* estado de envio;
|
||||||
|
* prevenção de envio duplicado;
|
||||||
|
* estados de sucesso e falha;
|
||||||
|
* tratamento de erro de rede;
|
||||||
|
* preservação dos dados após erros recuperáveis;
|
||||||
|
* proteção antispam simples;
|
||||||
|
* privacidade e LGPD;
|
||||||
|
* links e mensagens de WhatsApp corretos;
|
||||||
|
* ausência de segredos expostos no cliente.
|
||||||
|
|
||||||
|
Quando algum dado real não estiver disponível, use configuração ou variável de ambiente e documente a pendência.
|
||||||
|
|
||||||
|
### SEO
|
||||||
|
|
||||||
|
Corrija, quando aplicável:
|
||||||
|
|
||||||
|
* títulos exclusivos por rota;
|
||||||
|
* meta descriptions;
|
||||||
|
* canonical;
|
||||||
|
* Open Graph;
|
||||||
|
* Twitter cards;
|
||||||
|
* sitemap;
|
||||||
|
* robots;
|
||||||
|
* favicon;
|
||||||
|
* idioma;
|
||||||
|
* headings;
|
||||||
|
* URLs;
|
||||||
|
* links internos;
|
||||||
|
* página 404;
|
||||||
|
* metadados sociais;
|
||||||
|
* indexação distinta entre preview e produção.
|
||||||
|
|
||||||
|
Não crie dados estruturados com informações não confirmadas.
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
Corrija problemas relevantes relacionados a:
|
||||||
|
|
||||||
|
* imagens;
|
||||||
|
* tamanhos responsivos;
|
||||||
|
* formatos modernos;
|
||||||
|
* lazy loading;
|
||||||
|
* LCP;
|
||||||
|
* CLS;
|
||||||
|
* INP;
|
||||||
|
* fontes;
|
||||||
|
* scripts desnecessários;
|
||||||
|
* hidratação excessiva;
|
||||||
|
* JavaScript evitável;
|
||||||
|
* componentes client-side sem necessidade;
|
||||||
|
* animações custosas;
|
||||||
|
* dependências pesadas;
|
||||||
|
* carregamento de conteúdo abaixo da dobra.
|
||||||
|
|
||||||
|
Preserve a qualidade visual das fotografias.
|
||||||
|
|
||||||
|
### Qualidade técnica
|
||||||
|
|
||||||
|
Corrija:
|
||||||
|
|
||||||
|
* erros de TypeScript;
|
||||||
|
* erros de lint;
|
||||||
|
* erros de build;
|
||||||
|
* warnings de hidratação;
|
||||||
|
* erros de console;
|
||||||
|
* requisições quebradas;
|
||||||
|
* links inválidos;
|
||||||
|
* rotas órfãs;
|
||||||
|
* componentes duplicados quando a consolidação simplificar o projeto;
|
||||||
|
* tratamento de erros ausente;
|
||||||
|
* tipagem insegura;
|
||||||
|
* complexidade desnecessária diretamente relacionada ao escopo.
|
||||||
|
|
||||||
|
## Prioridades
|
||||||
|
|
||||||
|
Considere:
|
||||||
|
|
||||||
|
* **P0:** bloqueia funcionamento, segurança, uso ou lançamento;
|
||||||
|
* **P1:** prejudica significativamente experiência, conversão, acessibilidade, SEO, performance ou credibilidade;
|
||||||
|
* **P2:** refinamento não essencial para o lançamento.
|
||||||
|
|
||||||
|
Implemente todos os itens P0 e P1 que possam ser resolvidos com as informações existentes.
|
||||||
|
|
||||||
|
Itens dependentes de dados reais da cliente devem permanecer como pendências explícitas, sem conteúdo fictício.
|
||||||
|
|
||||||
|
## Restrições
|
||||||
|
|
||||||
|
* Preserve a stack e a arquitetura existentes quando forem adequadas.
|
||||||
|
* Prefira mudanças simples, localizadas e fáceis de manter.
|
||||||
|
* Não reescreva o projeto sem necessidade concreta.
|
||||||
|
* Não adicione bibliotecas quando a solução atual for suficiente.
|
||||||
|
* Não implemente pagamentos, CRM, área do cliente, chat, contratos avançados ou funcionalidades fora do MVP.
|
||||||
|
* Não altere arquivos não relacionados sem justificativa.
|
||||||
|
* Preserve alterações locais preexistentes.
|
||||||
|
* Não silencie problemas com `any`, `eslint-disable`, casts inseguros ou desativação de validações.
|
||||||
|
* Não reduza acessibilidade para preservar estética.
|
||||||
|
* Não deixe mocks ou soluções temporárias como implementação final.
|
||||||
|
|
||||||
|
## Critérios de conclusão
|
||||||
|
|
||||||
|
A tarefa estará concluída quando:
|
||||||
|
|
||||||
|
* todas as rotas públicas existentes tiverem sido auditadas;
|
||||||
|
* todos os problemas P0 e P1 solucionáveis tiverem sido corrigidos;
|
||||||
|
* o site funcionar corretamente em mobile e desktop;
|
||||||
|
* não houver overflow horizontal, sobreposição ou componentes quebrados;
|
||||||
|
* menu, navegação, links, CTAs e formulários funcionarem;
|
||||||
|
* o posicionamento social e corporativo estiver claro;
|
||||||
|
* a acessibilidade essencial estiver atendida;
|
||||||
|
* os metadados e fundamentos de SEO estiverem corretos;
|
||||||
|
* os principais problemas de performance tiverem sido tratados;
|
||||||
|
* erros causados ou revelados pelas alterações tiverem sido resolvidos;
|
||||||
|
* lint, TypeScript, testes e build disponíveis tiverem sido executados com sucesso.
|
||||||
|
|
||||||
|
Não declare uma validação como aprovada sem executá-la.
|
||||||
|
|
||||||
|
## Entrega final
|
||||||
|
|
||||||
|
Ao concluir, apresente:
|
||||||
|
|
||||||
|
1. rotas auditadas;
|
||||||
|
2. problemas principais encontrados;
|
||||||
|
3. alterações implementadas;
|
||||||
|
4. arquivos modificados;
|
||||||
|
5. comandos executados e seus resultados;
|
||||||
|
6. decisões e trade-offs relevantes;
|
||||||
|
7. informações que dependem da cliente;
|
||||||
|
8. itens P2 mantidos fora do escopo.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
schema: spec-driven
|
||||||
|
created: 2026-08-02
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
# Notes — recreate-public-frontend
|
||||||
|
|
||||||
|
## Remaining unresolved (do not invent)
|
||||||
|
|
||||||
|
- **Official contacts:** production e-mail is `amareassessoriaeventos@gmail.com`; WhatsApp and Instagram handles still placeholder until the owner confirms.
|
||||||
|
- **Testimonial authorization:** five real couples from `depoimentos.md` are seeded for local/demo/visual; production publish still requires explicit couple authorization before `published_at` goes live.
|
||||||
|
- **Authorized photography:** public images remain fixture/demo with editorial disclosure notes until Amare supplies an authorized portfolio archive.
|
||||||
|
- **WEB-05 briefing form:** `/contato` stays presentation-only (channels + CTA); lead capture is a future change.
|
||||||
|
|
||||||
|
## Adaptation note
|
||||||
|
|
||||||
|
Mockup `amare-home-editorial.html` was single-page with anchors. Implementation keeps Laravel multipage routes; home carries the editorial narrative, internal pages are chapters with the same Heritage Editorial grammar.
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
## Context
|
||||||
|
|
||||||
|
O site público da Fase 1 já entrega rotas, CMS, SEO, mídia responsiva, regressão visual e acessibilidade. A identidade visual, porém, ainda é o placeholder da fundação: Instrument Sans, acento ouro, raios arredondados e cartões com sombra. `DESIGN.md` (“Heritage Editorial”), o mockup `amare-home-editorial.html`, o logo fornecido (coração facetado) e `depoimentos.md` (cinco casais reais) definem a marca a materializar.
|
||||||
|
|
||||||
|
Restrições que condicionam o desenho:
|
||||||
|
|
||||||
|
- Arquitetura multipágina Laravel/Blade/CMS já aprovada; o mockup HTML é single-page com âncoras — adaptar, não portar literalmente.
|
||||||
|
- Contato permanece placeholder (WEB-05 fora de escopo); CTAs levam a `/contato` sem criar leads.
|
||||||
|
- Fontes self-hosted via Vite (determinismo visual); sem Google Fonts CDN.
|
||||||
|
- Imagens públicas via disco configurado + variantes; Unsplash do mockup não entra no app.
|
||||||
|
- `PRODUCT.md`: São Paulo capital; seeders atuais ainda usam Fortaleza e depoimentos fictícios.
|
||||||
|
- Change paralela `complete-foundation-parity` não bloqueia nem é bloqueada por esta.
|
||||||
|
|
||||||
|
## Goals / Non-Goals
|
||||||
|
|
||||||
|
**Goals:**
|
||||||
|
|
||||||
|
- Materializar Heritage Editorial em todas as rotas públicas (home, serviços, portfólio, caso, sobre, contato, privacidade, 404, 500).
|
||||||
|
- Home como capa do “Dossiê Editorial do Evento”: hero, manifesto, serviços, portfólio, método (4 passos), depoimentos reais, perfil Amare, CTA final.
|
||||||
|
- Tokens centralizados alinhados a `DESIGN.md`; EB Garamond única família; radius 0; elevação por campos tonais.
|
||||||
|
- Logo oficial otimizado (selo + lockup) em fundos claros/escuros, geometria preservada.
|
||||||
|
- Cinco depoimentos de `depoimentos.md` no CMS/seed, multipárrafo, com nota de autorização.
|
||||||
|
- Manter publicação dinâmica, paginação, eager loading, SEO, axe, teclado, contraste AA e baselines determinísticas.
|
||||||
|
|
||||||
|
**Non-Goals:**
|
||||||
|
|
||||||
|
- Briefing funcional / lead (WEB-05), WhatsApp automatizado, inventar provas corporativas.
|
||||||
|
- Redesign do Filament, page builder, single-page navigation como modelo primário.
|
||||||
|
- Fotografia proprietária real (permanece ilustrativa e marcada até acervo autorizado).
|
||||||
|
- Staging/deploy/auth parity (`complete-foundation-parity`).
|
||||||
|
|
||||||
|
## Decisions
|
||||||
|
|
||||||
|
### D1 — Multipágina editorial, não single-page literal
|
||||||
|
|
||||||
|
Preservar rotas do SPEC §5.1. Home concentra a narrativa do mockup; páginas internas herdam a mesma gramática (eyebrow, títulos, linhas 1px, spreads assimétricos no desktop, sequência linear no mobile). Header usa links de rota (não `#âncoras` como navegação primária), com CTA “Solicitar proposta” → `contact`.
|
||||||
|
|
||||||
|
*Alternativas:* home quase idêntica com âncoras (rejeitada: conflita com SEO/CMS/rotas já testadas); portar HTML estático (rejeitada: perde CMS e determinismo).
|
||||||
|
|
||||||
|
### D2 — Tokens Heritage Editorial como única fonte visual
|
||||||
|
|
||||||
|
Reescrever `resources/css/tokens.css` e o mapeamento `@theme` em `app.css`:
|
||||||
|
|
||||||
|
| Papel | Token | Valor |
|
||||||
|
|-------|-------|-------|
|
||||||
|
| Fundo | `--amare-color-bg` | `#FBF9F4` (Papel Marfim) |
|
||||||
|
| Fundo profundo | `--amare-color-bg-deep` | `#F0EEE9` |
|
||||||
|
| Arquivo | `--amare-color-bg-archive` | `#E4E2DD` |
|
||||||
|
| Oliva | `--amare-color-accent` | `#556B2F` |
|
||||||
|
| Oliva profunda | `--amare-color-accent-deep` | `#3E5219` |
|
||||||
|
| Sálvia | `--amare-color-sage` | `#8B9D77` |
|
||||||
|
| Tinta | `--amare-color-text` | `#1B1C19` |
|
||||||
|
| Tinta suave | `--amare-color-muted` | `#5D6155` |
|
||||||
|
| Linha | `--amare-color-border` | `#C5C8B8` |
|
||||||
|
| Radius | `--amare-radius-*` | `0` |
|
||||||
|
| Container | `--amare-container-max` | `1120px` |
|
||||||
|
| Sombra | removida / não usada em conteúdo | — |
|
||||||
|
|
||||||
|
Tipografia: EB Garamond (400/500/600) self-hosted via Vite; escala display/headline/title/body/label conforme `DESIGN.md`. Componentes públicos deixam de usar `rounded-*` e shadows de cartão.
|
||||||
|
|
||||||
|
*Alternativa:* CSS inline do mockup (rejeitada: foge de `design-tokens` e quebra Tailwind/`@theme`).
|
||||||
|
|
||||||
|
### D3 — Composição da home e omissão de seções vazias
|
||||||
|
|
||||||
|
Ordem canônica:
|
||||||
|
|
||||||
|
1. Hero (settings + imagem OG/hero se houver)
|
||||||
|
2. Manifesto (copy de settings)
|
||||||
|
3. Serviços em destaque (lista editorial, não grid de cartões)
|
||||||
|
4. Portfólio em destaque (bloco escuro oliva; funde proof+cases atuais)
|
||||||
|
5. Método (4 passos: Escuta, Direção, Produção, Execução)
|
||||||
|
6. Depoimentos publicados
|
||||||
|
7. Perfil / posicionamento Amare (about + princípios)
|
||||||
|
8. CTA final → `/contato`
|
||||||
|
|
||||||
|
Seções alimentadas por collections (serviços, casos, depoimentos) **omitidas** quando vazias. Manifesto, método, perfil e CTA final permanecem (copy de settings / defaults editoriais). Um único `h1` no hero; demais seções usam `h2`/`h3`.
|
||||||
|
|
||||||
|
### D4 — Contato continua presentation-only
|
||||||
|
|
||||||
|
`/contato` e o CTA da home mostram canais de `site_settings` (e-mail, telefone, cidade, sociais). Nenhum `<form>` funcional, nenhum lead. O mockup de formulário serve só como referência visual futura para WEB-05; nesta change o bloco de contato da home é CTA editorial + link para a página de contato, não formulário embutido.
|
||||||
|
|
||||||
|
### D5 — Extensão mínima tipada de `site_settings`
|
||||||
|
|
||||||
|
Novos campos tipados (não key/value genérico):
|
||||||
|
|
||||||
|
- `logo_path` / `logo_alt` (opcional; fallback para lockup estático em `public/`)
|
||||||
|
- `hero_secondary_cta_label` (opcional)
|
||||||
|
- `hero_note` (texto curto sob CTAs)
|
||||||
|
- `manifesto_title`, `manifesto_lead`, `manifesto_body`
|
||||||
|
- `method_intro` (opcional; passos estruturados em JSON tipado ou colunas `method_step_{1..4}_{title,body}` — preferir JSONB `method_steps` validado no Filament)
|
||||||
|
- `principles` (JSONB lista de até 4 strings) **ou** quatro colunas `principle_1..4`
|
||||||
|
- Manter `about_summary`, hero atual, contato, SEO, analytics
|
||||||
|
|
||||||
|
Filament `ManageSiteSettings` ganha seções editoriais em pt-BR. Defaults no seeder alinhados ao mockup + São Paulo.
|
||||||
|
|
||||||
|
*Alternativa:* hardcode de manifesto/método nas Blade (rejeitada parcialmente: método/princípios podem ter default no view, mas copy institucional deve ser editável como o hero).
|
||||||
|
|
||||||
|
### D6 — Logo: ativo estático + campo CMS opcional
|
||||||
|
|
||||||
|
1. Converter/otimizar o PNG fornecido para WebP/SVG derivados em `public/brand/` (selo coração + lockup completo), com versões para fundo claro (oliva) e fundo escuro (papel/branco).
|
||||||
|
2. Componente `<x-brand.logo>` escolhe variante por contexto (`on-dark` / `on-light`) e expõe `alt` acessível.
|
||||||
|
3. Se `logo_path` em settings estiver preenchido, usa o upload; senão, o estático versionado.
|
||||||
|
|
||||||
|
Não redesenhar o coração facetado; não inventar polígonos decorativos genéricos.
|
||||||
|
|
||||||
|
### D7 — Depoimentos reais multipárrafo
|
||||||
|
|
||||||
|
- Seedar os 5 casais de `depoimentos.md` em `quote` (texto completo com quebras `\n\n`), `author_name`, `context` (ex.: `Casamento · 06/12/2025`), `sort_order`, `is_featured`, `published_at` conforme ambiente.
|
||||||
|
- Blade renderiza parágrafos a partir de quebras de linha; tipografia editorial (aspas, offset).
|
||||||
|
- Nota discreta no markup/admin: autorização final dos casais antes de publicação em produção.
|
||||||
|
- Remover depoimentos fictícios dos seeders de demo/visual ou substituí-los pelos reais (visual seeder usa subset determinístico, tipicamente 2 featured).
|
||||||
|
|
||||||
|
### D8 — Navegação responsiva com JS mínimo
|
||||||
|
|
||||||
|
`resources/js/app.js` ganha toggle de menu mobile (aria-expanded, `menu-open`, fechar ao navegar), espelhando o mockup. Sem framework novo. `prefers-reduced-motion` continua a anular transições não essenciais. Hover de imagem (scale leve) só quando motion permitido.
|
||||||
|
|
||||||
|
### D9 — Páginas internas como capítulos
|
||||||
|
|
||||||
|
| Rota | Tratamento |
|
||||||
|
|------|------------|
|
||||||
|
| `/servicos` | Lista editorial (número + nome + resumo), não cartões |
|
||||||
|
| `/portfolio` | Grade assimétrica / stack com captions; fundo pode usar papel profundo |
|
||||||
|
| `/portfolio/{slug}` | Caderno de caso: metadados, desafio/solução/resultado, galeria |
|
||||||
|
| `/sobre` | Perfil editorial + princípios |
|
||||||
|
| `/contato` | Canais + CTA textual (sem form) |
|
||||||
|
| `/privacidade` | Tipografia editorial sobre papel |
|
||||||
|
| 404/500 | Mesma linguagem; 500 sem internals |
|
||||||
|
|
||||||
|
### D10 — Testes e baselines
|
||||||
|
|
||||||
|
- Atualizar feature tests de home (ordem de seções, omissão, CTA → contact, `data-testid="home-primary-cta"`).
|
||||||
|
- Browser: axe nas rotas cobertas; Tab até CTA; console limpo.
|
||||||
|
- `composer visual:update` após aprovação visual local; timezone permanece `America/Fortaleza` (SPEC); copy de cidade pública passa a São Paulo.
|
||||||
|
- Fotos fixture locais continuam; filtro CSS de saturação contida via classe utilitária, não via URL externa.
|
||||||
|
|
||||||
|
## Risks / Trade-offs
|
||||||
|
|
||||||
|
- **Regeneração de 8+ snapshots** → risco de ruído no PR; mitigar com seeder visual estável e revisão humana do diff.
|
||||||
|
- **EB Garamond em forms/UI** → legibilidade de labels uppercase; mitigar com letter-spacing e peso 600 conforme DESIGN.md; validar contraste AA.
|
||||||
|
- **Depoimentos longos** → layout quebra em mobile; mitigar com tipografia responsiva e subset featured na home.
|
||||||
|
- **Autorização de depoimentos** → risco legal/reputacional; mitigar com nota explícita e `published_at` null até autorização.
|
||||||
|
- **Campos novos em site_settings** → migração + Filament; mitigar com defaults e nullable.
|
||||||
|
- **Paridade com mockup single-page** → expectativa visual vs rotas; documentar adaptação multipágina na proposta e no surface brief.
|
||||||
|
|
||||||
|
## Migration Plan
|
||||||
|
|
||||||
|
1. Migrar tokens/fontes/logo estático (sem breaking de rotas).
|
||||||
|
2. Migrar `site_settings` (colunas novas nullable + backfill de defaults).
|
||||||
|
3. Atualizar seeders (SP + depoimentos reais).
|
||||||
|
4. Trocar layout e páginas; manter contratos de testes passando incrementalmente.
|
||||||
|
5. Regenerar baselines com `composer visual:update`.
|
||||||
|
6. Rollback: reverter deploy/commit; migração down remove colunas novas; assets estáticos são aditivos.
|
||||||
|
|
||||||
|
## Open Questions
|
||||||
|
|
||||||
|
- Formato exato de `method_steps` / `principles` (JSONB vs colunas) — default recomendado: JSONB validado no Filament.
|
||||||
|
- WhatsApp/e-mail/Instagram oficiais ainda ausentes — settings continuam placeholder até o dono informar.
|
||||||
|
- Subconjunto de depoimentos na home (2 vs 5) — default: featured first, até 2 na home estilo mockup; listagem completa só se houver página dedicada (não há); home mostra todos published featured ou os N primeiros por `sort_order` (cap 2–3 para ritmo editorial).
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
## Why
|
||||||
|
|
||||||
|
O site público já existe com rotas, CMS e gates de qualidade, mas a identidade visual ainda é o placeholder da Fase 0 (Instrument Sans, ouro, cantos arredondados, cartões genéricos). `DESIGN.md` e o mockup editorial já definem o sistema Heritage Editorial; `depoimentos.md` e o logo fornecido finalmente permitem prova e marca reais. Sem recriar o frontend agora, o critério de saída da Fase 1 (“site público aprovado visualmente”) permanece ligado a uma UI que não representa a marca, e a Fase 2 (WEB-05) herdaria um shell genérico.
|
||||||
|
|
||||||
|
## What Changes
|
||||||
|
|
||||||
|
- Substituir tokens, tipografia e composição do site público pelo sistema **Heritage Editorial** de `DESIGN.md` (EB Garamond, oliva/papel, cantos retos, campos tonais, sem sombras de cartão SaaS).
|
||||||
|
- Adaptar o mockup `amare-home-editorial.html` à arquitetura **multipágina** Laravel/CMS existente: home como capa editorial; serviços, portfólio, caso, sobre, contato, privacidade e erros como capítulos coerentes.
|
||||||
|
- Incorporar o logo fornecido (coração facetado + lockup) como ativo otimizado com variantes para fundos claros/escuros, sem redesenhar a geometria.
|
||||||
|
- Seedar e renderizar os **cinco depoimentos reais** de `depoimentos.md` (texto, casal, data/contexto), com autorização final como requisito de publicação.
|
||||||
|
- Reestruturar a home na narrativa editorial: hero → manifesto → serviços → portfólio → método → depoimentos → perfil Amare → CTA final (WEB-01).
|
||||||
|
- Atualizar layout público (header/footer, navegação responsiva, selo), componentes Blade e páginas internas para a mesma linguagem visual.
|
||||||
|
- Estender `site_settings` o mínimo necessário para copy editorial (manifesto, nota do hero, CTA secundário, passos do método, princípios) mantendo singleton tipado (WEB-06).
|
||||||
|
- Regenerar baselines visuais desktop/mobile e manter axe, teclado, landmarks, SEO e publicação dinâmica (SPEC §6.5, §13.5, §13.8).
|
||||||
|
- Atualizar seeders/conteúdo demonstrativo para São Paulo e marcar fotografias ilustrativas até existir acervo autorizado.
|
||||||
|
|
||||||
|
## Non-Goals
|
||||||
|
|
||||||
|
Conforme [SPEC.md §4.2](../../SPEC.md) e decisões desta proposta:
|
||||||
|
|
||||||
|
- Formulário funcional de briefing / criação de lead (WEB-05) — permanece placeholder em `/contato`; change futura `build-lead-capture`.
|
||||||
|
- Integração WhatsApp, portal do cliente, page builder, i18n, PWA.
|
||||||
|
- Inventar cases corporativos, credenciais, números, imprensa ou provas não autorizadas.
|
||||||
|
- Redesign do painel Filament / área interna.
|
||||||
|
- Deploy staging / paridade de fundação — change paralela `complete-foundation-parity`, independente desta.
|
||||||
|
|
||||||
|
## Capabilities
|
||||||
|
|
||||||
|
### New Capabilities
|
||||||
|
|
||||||
|
<!-- Nenhuma capability nova: a recriação altera requisitos de capabilities já existentes. -->
|
||||||
|
|
||||||
|
### Modified Capabilities
|
||||||
|
|
||||||
|
- `design-tokens`: substituir tokens placeholder (Instrument Sans, ouro, raios, sombras) pelos tokens Heritage Editorial (EB Garamond, oliva/papel, radius 0, elevação tonal).
|
||||||
|
- `public-site-pages`: reestruturar home editorial e páginas públicas para a composição “Dossiê Editorial do Evento”, preservando rotas e publicação.
|
||||||
|
- `site-settings`: campos tipados adicionais para copy editorial da home (manifesto, CTAs, método, princípios, logo).
|
||||||
|
- `testimonials`: suporte a depoimentos multipárrafo reais com contexto/data e regra de autorização antes da publicação.
|
||||||
|
- `content-media`: logo da marca e tratamento editorial de imagens demonstrativas (marcação, filtros contidos) sem inventar acervo.
|
||||||
|
- `visual-regression`: baselines regeneradas sob a nova identidade; determinismo e cobertura de telas mantidos.
|
||||||
|
- `web-accessibility`: preservação/reforço de landmarks, foco, teclado, contraste AA e movimento reduzido após a troca tipográfica/cromática.
|
||||||
|
|
||||||
|
## Impact
|
||||||
|
|
||||||
|
- **Altera**: `resources/css/tokens.css`, `resources/css/app.css`, `vite.config.js`, `resources/views/layouts/public.blade.php`, `resources/views/pages/**`, `resources/views/components/home/**`, `resources/js/app.js`, seeders (`ContentSeeder`, `VisualContentSeeder`), possivelmente migração + model/Filament de `site_settings`, testes Feature/Browser e snapshots em `tests/.pest/snapshots/`.
|
||||||
|
- **Cria**: ativo de logo em `public/` (ou storage CMS), componentes Blade de marca/manifesto/positioning, campos tipados novos em `site_settings` se necessário.
|
||||||
|
- **Depende de**: specs atuais `design-tokens`, `public-site-pages`, `site-settings`, `testimonials`, `content-media`, `visual-regression`, `web-accessibility`, `public-seo`, `service-catalog`, `portfolio-cases`.
|
||||||
|
- **Independente de**: `complete-foundation-parity` (auth/staging/coverage).
|
||||||
|
- **Risco**: regeneração ampla de snapshots; mitigado por seed determinístico, fontes self-hosted e `composer visual:update` com revisão humana. Depoimentos reais exigem confirmação de autorização antes de publicar em produção.
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
## ADDED Requirements
|
||||||
|
|
||||||
|
### Requirement: Brand logo assets are available to the public layout
|
||||||
|
|
||||||
|
The system SHALL provide optimized Amare brand logo assets derived from the official faceted-heart lockup for use in the public header, footer and institutional pages. Assets MUST preserve the original geometry, include an accessible text alternative, and provide variants suitable for light and dark tonal fields. When `site_settings.logo_path` is present, the uploaded logo MUST be used; otherwise the versioned static brand asset MUST be used.
|
||||||
|
|
||||||
|
#### Scenario: Header renders brand mark with alt text
|
||||||
|
|
||||||
|
- **WHEN** any public page is rendered
|
||||||
|
- **THEN** the brand mark image or equivalent MUST expose accessible alternative text identifying Amare Assessoria
|
||||||
|
|
||||||
|
#### Scenario: Dark portfolio field uses a legible logo variant
|
||||||
|
|
||||||
|
- **WHEN** the brand mark is rendered on an olive-deep or otherwise dark public surface
|
||||||
|
- **THEN** the chosen logo variant MUST remain legible against that background
|
||||||
|
|
||||||
|
#### Scenario: Uploaded logo overrides static fallback
|
||||||
|
|
||||||
|
- **GIVEN** an admin has saved `logo_path` and `logo_alt` in site settings
|
||||||
|
- **WHEN** the public layout renders the brand mark
|
||||||
|
- **THEN** the uploaded logo MUST be used instead of the static fallback
|
||||||
|
|
||||||
|
### Requirement: Editorial image treatment remains self-hosted and deterministic
|
||||||
|
|
||||||
|
Public photography SHALL continue to use validated self-hosted uploads and responsive variants. Decorative saturation/contrast treatment for editorial mood MUST be applied via CSS on self-hosted images and MUST NOT introduce external image CDN dependencies that break deterministic visual tests.
|
||||||
|
|
||||||
|
#### Scenario: Public pages do not depend on external stock hosts
|
||||||
|
|
||||||
|
- **WHEN** the visual or browser suite loads covered public routes
|
||||||
|
- **THEN** content images MUST resolve from the application media disk or static fixtures
|
||||||
|
- **AND** MUST NOT require network access to third-party stock hosts
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Design tokens are centralized for the public site
|
||||||
|
|
||||||
|
The system SHALL define design tokens in a single source consumed by the public site layout and components. Tokens MUST implement the Heritage Editorial system from `DESIGN.md`: typography family EB Garamond (self-hosted), font scale (display/headline/title/body/label), spacing on an 8px rhythm, border radius `0` for interactive and content surfaces, container max width `1120px`, paper/olive/sage/ink color roles, transition duration/easing, and MUST NOT rely on card shadows as a hierarchy mechanism for regular content.
|
||||||
|
|
||||||
|
#### Scenario: Public layout uses shared Heritage Editorial tokens
|
||||||
|
|
||||||
|
- **WHEN** a public page is rendered
|
||||||
|
- **THEN** visual properties MUST be derived from the centralized token definitions rather than arbitrary inline values
|
||||||
|
- **AND** the primary typeface MUST be EB Garamond (or the declared serif fallback stack)
|
||||||
|
- **AND** public content surfaces MUST use `0` border radius from tokens
|
||||||
|
|
||||||
|
#### Scenario: Palette commits paper and olive regions
|
||||||
|
|
||||||
|
- **WHEN** the public site is rendered
|
||||||
|
- **THEN** background regions MUST use paper ivory / paper deep / olive deep tokens rather than pure white card stacks on a white page
|
||||||
|
- **AND** primary interactive emphasis MUST use olive heritage (`#556B2F`) / olive deep (`#3E5219`) tokens
|
||||||
|
|
||||||
|
### Requirement: Public site respects reduced motion preference
|
||||||
|
|
||||||
|
The system SHALL honor `prefers-reduced-motion` by disabling or minimizing non-essential animations and transitions on the public site, including image hover scales and menu transitions.
|
||||||
|
|
||||||
|
#### Scenario: User prefers reduced motion
|
||||||
|
|
||||||
|
- **WHEN** a visitor has `prefers-reduced-motion: reduce` enabled
|
||||||
|
- **THEN** the public site MUST NOT play non-essential motion effects
|
||||||
|
|
||||||
|
### Requirement: Public site meets baseline accessibility contrast
|
||||||
|
|
||||||
|
The system SHALL use Heritage Editorial color combinations that meet WCAG AA contrast requirements for text and interactive elements. Long-form text MUST use ink on paper; sage MUST NOT replace reading color when contrast would fall below AA.
|
||||||
|
|
||||||
|
#### Scenario: Primary text is readable
|
||||||
|
|
||||||
|
- **WHEN** primary body text is rendered on its background color
|
||||||
|
- **THEN** the contrast ratio MUST meet WCAG AA minimums
|
||||||
|
|
||||||
|
#### Scenario: Olive on paper interactive text is readable
|
||||||
|
|
||||||
|
- **WHEN** primary buttons or links use olive tokens on paper backgrounds (or paper text on olive)
|
||||||
|
- **THEN** the contrast ratio MUST meet WCAG AA minimums
|
||||||
|
|
||||||
|
## ADDED Requirements
|
||||||
|
|
||||||
|
### Requirement: Elevation comes from tonal fields not card shadows
|
||||||
|
|
||||||
|
The public site SHALL express hierarchy through tonal paper fields, 1px botanical rules, and editorial overlap. Regular content components MUST NOT use short grey SaaS card shadows.
|
||||||
|
|
||||||
|
#### Scenario: Content cards omit drop shadows
|
||||||
|
|
||||||
|
- **WHEN** home services, testimonials, or portfolio items are rendered
|
||||||
|
- **THEN** they MUST NOT depend on `--amare-shadow-*` card elevation for hierarchy
|
||||||
|
- **AND** separation MUST come from borders, tonal backgrounds, or whitespace
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Home renders the editorial structure from CMS content
|
||||||
|
|
||||||
|
The home page SHALL render, in order: header/navigation, hero, manifesto, featured services summary, featured portfolio selection, working method (four steps), testimonials, Amare positioning/profile, final contact CTA, and footer with contact, social links and legal links (WEB-01). Hero copy, brand name, manifesto, method and principles MUST come from `site_settings` (with editorial defaults when optional fields are empty); services, cases and testimonials MUST come from published records. The home MUST follow the Heritage Editorial composition (asymmetric spreads on desktop, linear sequence on mobile) rather than rounded card grids.
|
||||||
|
|
||||||
|
#### Scenario: Published content is displayed in configured order
|
||||||
|
|
||||||
|
- **GIVEN** published services, cases and testimonials exist
|
||||||
|
- **WHEN** a visitor loads the home
|
||||||
|
- **THEN** the published content MUST be displayed following the `sort_order` and featured flags
|
||||||
|
- **AND** the hero MUST show the values stored in `site_settings`
|
||||||
|
- **AND** the manifesto, method and positioning sections MUST be present
|
||||||
|
|
||||||
|
#### Scenario: CTA leads to the contact placeholder page
|
||||||
|
|
||||||
|
- **WHEN** a visitor activates the primary or final CTA on the home
|
||||||
|
- **THEN** the visitor MUST be taken to the `contact` route
|
||||||
|
- **AND** no lead record MUST be created
|
||||||
|
|
||||||
|
#### Scenario: Empty catalog sections are omitted
|
||||||
|
|
||||||
|
- **GIVEN** no published services, cases or testimonials
|
||||||
|
- **WHEN** a visitor loads the home
|
||||||
|
- **THEN** the response MUST be 200
|
||||||
|
- **AND** the services, portfolio and testimonials sections MUST be omitted instead of rendering empty containers
|
||||||
|
- **AND** hero, manifesto, method, positioning and final CTA MUST still render
|
||||||
|
|
||||||
|
#### Scenario: Home has no console errors
|
||||||
|
|
||||||
|
- **WHEN** the home is loaded in a real browser at desktop and mobile viewports
|
||||||
|
- **THEN** the browser console MUST contain no JavaScript errors
|
||||||
|
|
||||||
|
### Requirement: Listing and detail pages exist for catalog content
|
||||||
|
|
||||||
|
The system SHALL render a services listing (WEB-02) and a portfolio listing plus case detail (WEB-03) using the Heritage Editorial visual language. The case detail MUST present summary, event type, optional city/venue/date, challenge, solution, optional result, cover image and the ordered gallery.
|
||||||
|
|
||||||
|
#### Scenario: Services listing shows published services
|
||||||
|
|
||||||
|
- **WHEN** a visitor loads `/servicos`
|
||||||
|
- **THEN** every published service MUST be listed with title and summary in `sort_order`
|
||||||
|
- **AND** the listing MUST use the public editorial layout (not an unrelated visual system)
|
||||||
|
|
||||||
|
#### Scenario: Gallery respects stored order
|
||||||
|
|
||||||
|
- **GIVEN** a published case with multiple gallery images
|
||||||
|
- **WHEN** a visitor loads the case detail
|
||||||
|
- **THEN** the images MUST be rendered ordered by `sort_order`
|
||||||
|
|
||||||
|
#### Scenario: Listings paginate open-ended growth
|
||||||
|
|
||||||
|
- **WHEN** the number of published cases exceeds the page size
|
||||||
|
- **THEN** `/portfolio` MUST paginate instead of rendering all records
|
||||||
|
|
||||||
|
### Requirement: Institutional and error pages have brand identity
|
||||||
|
|
||||||
|
The system SHALL provide the Sobre and Política de privacidade pages and branded error pages (WEB-07) using the Heritage Editorial public layout, including the brand mark when available. The 404 page MUST use the public layout, and the 500 page MUST NOT expose stack traces or internal details when `APP_DEBUG` is false.
|
||||||
|
|
||||||
|
#### Scenario: Unknown URL renders branded 404
|
||||||
|
|
||||||
|
- **WHEN** a visitor requests a non-existent public URL
|
||||||
|
- **THEN** the response status MUST be 404
|
||||||
|
- **AND** the page MUST use the public layout and offer navigation back to the home
|
||||||
|
|
||||||
|
#### Scenario: Server error hides internals in production
|
||||||
|
|
||||||
|
- **GIVEN** `APP_DEBUG` is false
|
||||||
|
- **WHEN** an unhandled exception occurs on a public route
|
||||||
|
- **THEN** the response MUST be a generic branded error page
|
||||||
|
- **AND** MUST NOT contain a stack trace, file path, or environment variable
|
||||||
|
|
||||||
|
### Requirement: Contact page presents contact data as briefing placeholder
|
||||||
|
|
||||||
|
The `contact` route SHALL render the contact page using `site_settings` (e-mail, phone, city, social links) so the home CTA has a valid destination before the briefing form exists. The page MUST NOT create leads and MUST NOT submit a functional briefing form in this change.
|
||||||
|
|
||||||
|
#### Scenario: Contact page shows configured contact data
|
||||||
|
|
||||||
|
- **WHEN** a visitor loads `/contato`
|
||||||
|
- **THEN** the e-mail and phone stored in `site_settings` MUST be displayed
|
||||||
|
- **AND** no lead record MUST be created
|
||||||
|
|
||||||
|
## ADDED Requirements
|
||||||
|
|
||||||
|
### Requirement: Public header exposes brand mark and responsive navigation
|
||||||
|
|
||||||
|
The public layout SHALL render the Amare brand mark (faceted-heart logo lockup or configured logo), primary route navigation, and a contact CTA. On narrow viewports the navigation MUST be operable via a disclosure control with accessible name and `aria-expanded` state.
|
||||||
|
|
||||||
|
#### Scenario: Desktop header shows navigation and CTA
|
||||||
|
|
||||||
|
- **WHEN** a visitor loads any public page at a desktop viewport
|
||||||
|
- **THEN** the header MUST include brand mark, links to home/services/portfolio/about/contact, and a contact CTA
|
||||||
|
|
||||||
|
#### Scenario: Mobile menu toggles accessibly
|
||||||
|
|
||||||
|
- **WHEN** a visitor activates the menu button on a narrow viewport
|
||||||
|
- **THEN** the primary navigation MUST become available
|
||||||
|
- **AND** the control MUST expose an updated `aria-expanded` value
|
||||||
|
- **AND** activating a navigation link MUST close the menu
|
||||||
|
|
||||||
|
### Requirement: Demonstrative photography is labeled until authorized assets exist
|
||||||
|
|
||||||
|
When public pages render illustrative/demo photography that is not an authorized Amare asset, the system SHALL mark that imagery as demonstrative in visible copy or accessible labeling so visitors are not misled.
|
||||||
|
|
||||||
|
#### Scenario: Portfolio demo imagery is disclosed
|
||||||
|
|
||||||
|
- **WHEN** the home or portfolio renders placeholder photography
|
||||||
|
- **THEN** a visible note or equivalent disclosure MUST indicate the imagery is illustrative pending authorized assets
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Site settings singleton is manageable by admin only
|
||||||
|
|
||||||
|
The system SHALL persist site-wide settings in a `site_settings` table as a typed singleton (SPEC WEB-06, §8.2). Fields MUST include brand name, optional logo path and logo alt text, hero copy (eyebrow, title, subtitle, primary CTA label, optional secondary CTA label, optional hero note), manifesto copy (title, lead, body), method steps (structured typed data for four editorial steps), principles (structured typed list), about summary, contact email/phone/city, social links (jsonb), default meta title/description, default OG image path and alt text, and optional analytics fields disabled by default.
|
||||||
|
|
||||||
|
#### Scenario: Admin updates site settings
|
||||||
|
|
||||||
|
- **WHEN** an admin saves the site settings form in Filament
|
||||||
|
- **THEN** the singleton record is updated
|
||||||
|
- **AND** labels and validation messages are in pt-BR
|
||||||
|
|
||||||
|
#### Scenario: Assistant cannot access site settings
|
||||||
|
|
||||||
|
- **WHEN** an assistant navigates to site settings in Filament
|
||||||
|
- **THEN** access MUST be denied with HTTP 403
|
||||||
|
|
||||||
|
#### Scenario: Default OG image requires alt text
|
||||||
|
|
||||||
|
- **WHEN** an admin uploads a default OG image without alt text
|
||||||
|
- **THEN** validation MUST fail with a pt-BR error message
|
||||||
|
- **AND** alt text MUST remain optional when no default OG image is present
|
||||||
|
|
||||||
|
#### Scenario: Logo upload requires alt text
|
||||||
|
|
||||||
|
- **WHEN** an admin uploads a brand logo without alt text
|
||||||
|
- **THEN** validation MUST fail with a pt-BR error message
|
||||||
|
- **AND** alt text MUST remain optional when no logo is uploaded
|
||||||
|
|
||||||
|
#### Scenario: Singleton avoids generic key-value store
|
||||||
|
|
||||||
|
- **WHEN** site settings are stored
|
||||||
|
- **THEN** the system MUST use typed columns on `site_settings`
|
||||||
|
- **AND** MUST NOT introduce a generic key/value configuration table
|
||||||
|
|
||||||
|
#### Scenario: Editorial defaults remain available when optional fields are empty
|
||||||
|
|
||||||
|
- **GIVEN** manifesto, method steps or principles fields are empty
|
||||||
|
- **WHEN** the home is rendered
|
||||||
|
- **THEN** the page MUST still render those sections using safe editorial defaults
|
||||||
|
- **AND** MUST NOT error
|
||||||
|
|
||||||
|
## ADDED Requirements
|
||||||
|
|
||||||
|
### Requirement: Public geography defaults to São Paulo
|
||||||
|
|
||||||
|
Demo and visual seed content for site settings SHALL present the Amare operating city as São Paulo (capital), matching `PRODUCT.md`, instead of unrelated cities.
|
||||||
|
|
||||||
|
#### Scenario: Seeded settings use São Paulo
|
||||||
|
|
||||||
|
- **WHEN** content seeders populate `site_settings`
|
||||||
|
- **THEN** the city field MUST be São Paulo (or equivalent capital wording)
|
||||||
|
- **AND** MUST NOT present Fortaleza as the operating city
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Testimonials are managed with publication control
|
||||||
|
|
||||||
|
The system SHALL allow admins to manage testimonials (SPEC WEB-04) with quote text (including multi-paragraph content), author name, optional context (event type and/or date), optional photo with alt text, sort order, featured flag, and `published_at`. Public rendering MUST preserve paragraph breaks from the stored quote. Testimonials sourced from real clients MUST NOT be published to production without authorization; development seeds MAY include the authorized-pending real quotes marked for review.
|
||||||
|
|
||||||
|
#### Scenario: Unpublished testimonial is excluded
|
||||||
|
|
||||||
|
- **WHEN** a testimonial has `published_at` null
|
||||||
|
- **THEN** the `published()` scope MUST exclude it
|
||||||
|
|
||||||
|
#### Scenario: Published testimonial is queryable
|
||||||
|
|
||||||
|
- **WHEN** an admin sets `published_at` with required quote and author name
|
||||||
|
- **THEN** the testimonial MUST be included in the `published()` scope
|
||||||
|
|
||||||
|
#### Scenario: Assistant cannot manage testimonials
|
||||||
|
|
||||||
|
- **WHEN** an assistant attempts to access the testimonials Resource
|
||||||
|
- **THEN** access MUST be denied with HTTP 403
|
||||||
|
|
||||||
|
#### Scenario: Featured testimonials are filterable
|
||||||
|
|
||||||
|
- **WHEN** content is queried with featured filter
|
||||||
|
- **THEN** records with `is_featured` true MUST be retrievable independently of sort order
|
||||||
|
|
||||||
|
#### Scenario: Multi-paragraph quotes render as paragraphs
|
||||||
|
|
||||||
|
- **GIVEN** a published testimonial whose quote contains blank-line separated paragraphs
|
||||||
|
- **WHEN** the home testimonials section is rendered
|
||||||
|
- **THEN** each paragraph MUST appear as distinct block text rather than a single collapsed line
|
||||||
|
|
||||||
|
## ADDED Requirements
|
||||||
|
|
||||||
|
### Requirement: Real wedding testimonials are seeded from authorized source copy
|
||||||
|
|
||||||
|
Content and visual seeders SHALL replace fictional testimonials with the five real wedding testimonials from `depoimentos.md`, preserving author couple names, quote wording, and date/context. Until final publication authorization is confirmed, production deployments MUST keep those records unpublished or gated by explicit admin publish action.
|
||||||
|
|
||||||
|
#### Scenario: Seed loads the five real couples
|
||||||
|
|
||||||
|
- **WHEN** the content seeder runs
|
||||||
|
- **THEN** testimonials for Jeniffer e Maick, Quesia e Jhonata, Milena e Weslley, Raquel e Pedro, and Victoria e Pedro MUST exist with their source quotes and marriage context/dates
|
||||||
|
|
||||||
|
#### Scenario: Fictional demo quotes are removed
|
||||||
|
|
||||||
|
- **WHEN** the content seeder completes
|
||||||
|
- **THEN** previously invented placeholder testimonial authors MUST NOT remain as the published demo set
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Public screens have desktop and mobile visual baselines
|
||||||
|
|
||||||
|
The system SHALL keep versioned screenshot baselines for the public screens available in this phase (SPEC §13.5): Home, Serviços, Portfólio and Detalhe do portfólio, at 1440×1000 desktop and 390×844 mobile, under the Heritage Editorial identity. A rendering change that alters those screens MUST fail the browser suite until the diff is reviewed and baselines are explicitly updated.
|
||||||
|
|
||||||
|
#### Scenario: Unintended visual change fails the suite
|
||||||
|
|
||||||
|
- **GIVEN** approved baselines exist
|
||||||
|
- **WHEN** a code change alters the rendering of a covered screen
|
||||||
|
- **THEN** the visual assertion MUST fail and report the diff
|
||||||
|
|
||||||
|
#### Scenario: Both viewports are covered
|
||||||
|
|
||||||
|
- **WHEN** the visual suite runs
|
||||||
|
- **THEN** each covered screen MUST be asserted at 1440×1000 and 390×844
|
||||||
|
|
||||||
|
#### Scenario: Heritage Editorial identity is captured
|
||||||
|
|
||||||
|
- **WHEN** approved baselines for the home are reviewed after this change
|
||||||
|
- **THEN** they MUST reflect EB Garamond typography, olive/paper palette and sharp-edged editorial layout rather than the previous gold/rounded placeholder look
|
||||||
|
|
||||||
|
### Requirement: Visual runs are deterministic
|
||||||
|
|
||||||
|
Visual runs SHALL be deterministic per SPEC §13.5: fixed Chromium and Linux image, fixed viewport, timezone `America/Fortaleza`, locale `pt-BR`, self-hosted fonts installed/bundled for the suite, frozen clock, deterministic seed (including real testimonial subset and São Paulo settings), animations and transitions disabled, and no dependency on external network.
|
||||||
|
|
||||||
|
#### Scenario: Repeated run without code change produces no diff
|
||||||
|
|
||||||
|
- **WHEN** the visual suite runs twice against the same commit and seed
|
||||||
|
- **THEN** both runs MUST pass with no pixel diff
|
||||||
|
|
||||||
|
#### Scenario: Time-dependent content does not cause drift
|
||||||
|
|
||||||
|
- **GIVEN** the clock is frozen and the seed is deterministic
|
||||||
|
- **WHEN** the suite runs on a different calendar day
|
||||||
|
- **THEN** rendered dates MUST remain identical to the baseline
|
||||||
|
|
||||||
|
#### Scenario: Motion is disabled during capture
|
||||||
|
|
||||||
|
- **WHEN** a screenshot is captured
|
||||||
|
- **THEN** CSS animations and transitions MUST be disabled
|
||||||
|
|
||||||
|
### Requirement: Baseline updates are explicit and reviewed
|
||||||
|
|
||||||
|
Baselines SHALL only be updated through the explicit `composer visual:update` command, and the resulting diff MUST be reviewed by a human before merge. Baselines MUST NOT be regenerated automatically to make CI pass.
|
||||||
|
|
||||||
|
#### Scenario: CI does not regenerate baselines
|
||||||
|
|
||||||
|
- **WHEN** the `browser` CI job runs
|
||||||
|
- **THEN** it MUST run in assertion mode
|
||||||
|
- **AND** MUST NOT write new baselines
|
||||||
|
|
||||||
|
#### Scenario: Developer updates baselines intentionally
|
||||||
|
|
||||||
|
- **WHEN** a developer runs `composer visual:update`
|
||||||
|
- **THEN** the updated baseline files MUST be written to the versioned baseline directory for review
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
## MODIFIED Requirements
|
||||||
|
|
||||||
|
### Requirement: Public routes have no critical or serious accessibility issues
|
||||||
|
|
||||||
|
The system SHALL run automated accessibility checks on the public routes covered by the browser suite (SPEC §6.5, §13.8) after the Heritage Editorial redesign. A critical or serious issue MUST fail the suite.
|
||||||
|
|
||||||
|
#### Scenario: Critical issue blocks the suite
|
||||||
|
|
||||||
|
- **WHEN** the automated accessibility check reports a critical or serious issue on a covered route
|
||||||
|
- **THEN** the browser suite MUST fail and report the offending rule and selector
|
||||||
|
|
||||||
|
#### Scenario: Covered routes are checked
|
||||||
|
|
||||||
|
- **WHEN** the accessibility suite runs
|
||||||
|
- **THEN** the home, services listing, portfolio listing and case detail MUST each be checked
|
||||||
|
|
||||||
|
### Requirement: Public pages use accessible semantic structure
|
||||||
|
|
||||||
|
Public pages SHALL provide semantic landmarks, exactly one `h1` per page, a coherent heading order, alt text on every content image and brand mark, and visible focus on interactive elements (SPEC §6.5).
|
||||||
|
|
||||||
|
#### Scenario: Single h1 per page
|
||||||
|
|
||||||
|
- **WHEN** any public page is rendered
|
||||||
|
- **THEN** exactly one `h1` element MUST be present
|
||||||
|
|
||||||
|
#### Scenario: Landmarks are present
|
||||||
|
|
||||||
|
- **WHEN** any public page is rendered
|
||||||
|
- **THEN** `header`, `main`, `nav` and `footer` landmarks MUST be present
|
||||||
|
|
||||||
|
#### Scenario: Content images expose alt text
|
||||||
|
|
||||||
|
- **WHEN** a page renders a cover or gallery image
|
||||||
|
- **THEN** the `alt` attribute MUST contain the stored alt text
|
||||||
|
|
||||||
|
#### Scenario: Brand mark exposes accessible name
|
||||||
|
|
||||||
|
- **WHEN** the public header brand mark is rendered
|
||||||
|
- **THEN** it MUST expose an accessible name identifying Amare Assessoria
|
||||||
|
|
||||||
|
### Requirement: Public pages are fully keyboard operable
|
||||||
|
|
||||||
|
Visitors SHALL be able to reach and activate every interactive element with the keyboard, including the mobile navigation disclosure when visible, with a visible focus indicator and a skip link to the main content.
|
||||||
|
|
||||||
|
#### Scenario: Keyboard reaches the primary CTA
|
||||||
|
|
||||||
|
- **WHEN** a visitor navigates the home with the Tab key
|
||||||
|
- **THEN** the primary CTA MUST receive focus with a visible indicator
|
||||||
|
- **AND** activating it with the keyboard MUST navigate to the contact route
|
||||||
|
|
||||||
|
#### Scenario: Skip link bypasses navigation
|
||||||
|
|
||||||
|
- **WHEN** a visitor focuses the first element of a public page
|
||||||
|
- **THEN** a skip link to the main content MUST be available
|
||||||
|
|
||||||
|
#### Scenario: Mobile menu is keyboard operable
|
||||||
|
|
||||||
|
- **WHEN** the mobile menu button is focused and activated with the keyboard
|
||||||
|
- **THEN** the navigation links MUST become reachable by subsequent Tab stops
|
||||||
|
- **AND** the button MUST expose the correct `aria-expanded` state
|
||||||
|
|
||||||
|
### Requirement: Reduced motion preference is honored
|
||||||
|
|
||||||
|
The system SHALL suppress non-essential animation and transition when the user agent reports `prefers-reduced-motion: reduce`, including editorial hover scales and menu transitions introduced by the redesign.
|
||||||
|
|
||||||
|
#### Scenario: Reduced motion disables transitions
|
||||||
|
|
||||||
|
- **GIVEN** the browser reports `prefers-reduced-motion: reduce`
|
||||||
|
- **WHEN** a public page is loaded
|
||||||
|
- **THEN** decorative transitions and animations MUST NOT run
|
||||||
|
|
||||||
|
### Requirement: Public pages emit no console errors
|
||||||
|
|
||||||
|
Covered public routes SHALL load without JavaScript console errors in a real browser (SPEC §13.8, §19), including pages that load the mobile navigation script.
|
||||||
|
|
||||||
|
#### Scenario: Console stays clean on covered routes
|
||||||
|
|
||||||
|
- **WHEN** a covered public route is loaded in the browser suite
|
||||||
|
- **THEN** the console MUST contain no error-level messages
|
||||||
@@ -0,0 +1,57 @@
|
|||||||
|
## 1. Tokens, fonts and brand assets
|
||||||
|
|
||||||
|
- [x] 1.1 Write failing feature/CSS contract tests (or extend existing token/layout assertions) for Heritage Editorial palette, EB Garamond family, radius 0 and container `1120px`
|
||||||
|
- [x] 1.2 Rewrite `resources/css/tokens.css` + `@theme` mapping in `app.css` to Heritage Editorial; remove card-shadow hierarchy for public content
|
||||||
|
- [x] 1.3 Swap Vite font from Instrument Sans to self-hosted EB Garamond (400/500/600) and update `components/fonts.blade.php` consumption
|
||||||
|
- [x] 1.4 Add optimized logo assets under `public/brand/` (light/dark variants) from the provided lockup without redrawing geometry; add `<x-brand.logo>` with accessible alt
|
||||||
|
- [x] 1.5 Run focused feature/static checks covering tokens/fonts and `npm run build`
|
||||||
|
|
||||||
|
## 2. Site settings and CMS editorial fields
|
||||||
|
|
||||||
|
- [x] 2.1 Add failing feature tests for new typed `site_settings` fields (logo, hero secondary CTA/note, manifesto, method steps, principles) and São Paulo seed city
|
||||||
|
- [x] 2.2 Create migration + model fillable/casts for the new typed columns (JSONB for method steps/principles preferred)
|
||||||
|
- [x] 2.3 Update Filament `ManageSiteSettings` with pt-BR editorial sections and logo alt validation
|
||||||
|
- [x] 2.4 Update `ContentSeeder` / factory defaults with editorial copy and São Paulo; keep optional fields nullable with safe view defaults
|
||||||
|
- [x] 2.5 Run `composer test:feature` for site-settings coverage
|
||||||
|
|
||||||
|
## 3. Real testimonials
|
||||||
|
|
||||||
|
- [x] 3.1 Add failing tests for multi-paragraph quote rendering and seeder expectations for the five couples from `depoimentos.md`
|
||||||
|
- [x] 3.2 Replace fictional testimonials in content/visual seeders with the real quotes, author names and context/dates
|
||||||
|
- [x] 3.3 Update testimonials Blade to render paragraph breaks; keep unpublished-by-default path documented for production authorization
|
||||||
|
- [x] 3.4 Run testimonials feature tests
|
||||||
|
|
||||||
|
## 4. Public layout and navigation
|
||||||
|
|
||||||
|
- [x] 4.1 Add/extend failing tests for brand mark in header, landmarks, skip link, and mobile menu `aria-expanded` behavior
|
||||||
|
- [x] 4.2 Redesign `layouts/public.blade.php` header/footer for Heritage Editorial (logo, route nav, contact CTA, footer groups)
|
||||||
|
- [x] 4.3 Implement minimal mobile menu toggle in `resources/js/app.js` with reduced-motion safety
|
||||||
|
- [x] 4.4 Run layout/accessibility structure feature tests
|
||||||
|
|
||||||
|
## 5. Home editorial reconstruction
|
||||||
|
|
||||||
|
- [x] 5.1 Update failing `HomePageContentTest` (and related) for new section order: hero → manifesto → services → portfolio → method → testimonials → positioning → final CTA; empty catalog sections omitted; CTA → contact; preserve `data-testid="home-primary-cta"`
|
||||||
|
- [x] 5.2 Rebuild home components/pages to match editorial composition (merge proof+cases into one portfolio block; add manifesto + positioning; four method steps)
|
||||||
|
- [x] 5.3 Wire settings-driven copy and demo-image disclosure note; keep single `h1`
|
||||||
|
- [x] 5.4 Run home feature tests
|
||||||
|
|
||||||
|
## 6. Internal public pages as chapters
|
||||||
|
|
||||||
|
- [x] 6.1 Extend/adjust public page feature tests for services, portfolio index/show, about, contact (presentation-only), privacy and branded errors under the new layout
|
||||||
|
- [x] 6.2 Restyle `pages/services`, `pages/portfolio/*`, `pages/about`, `pages/contact`, `pages/privacy`, `errors/404`, `errors/500` to Heritage Editorial without changing route contracts or inventing proof
|
||||||
|
- [x] 6.3 Confirm contact page shows settings channels and creates no leads
|
||||||
|
- [x] 6.4 Run `PublicPagesTest` and related SEO/N+1 tests
|
||||||
|
|
||||||
|
## 7. Accessibility, browser and visual gates
|
||||||
|
|
||||||
|
- [x] 7.1 Update browser accessibility tests for brand mark name, keyboard path to primary CTA, mobile menu operability, axe on covered routes, reduced motion and clean console
|
||||||
|
- [x] 7.2 Update `VisualContentSeeder` for deterministic Heritage Editorial content (SP + real testimonial subset + fixtures)
|
||||||
|
- [x] 7.3 Run browser a11y/smoke suites; fix regressions
|
||||||
|
- [x] 7.4 Run `composer visual:update` and review desktop `1440×1000` / mobile `390×844` diffs for home, services, portfolio, portfolio detail before committing baselines
|
||||||
|
|
||||||
|
## 8. Quality closeout
|
||||||
|
|
||||||
|
- [x] 8.1 Run `composer pint` and `composer phpstan` on touched PHP
|
||||||
|
- [x] 8.2 Run `composer test:feature` and `composer test:browser`
|
||||||
|
- [x] 8.3 Run `composer quality` (or equivalent full gate) and fix remaining failures
|
||||||
|
- [x] 8.4 Update surface brief / note remaining unresolved items (official contacts, final testimonial authorization, authorized photography) without inventing facts
|
||||||
@@ -15,15 +15,17 @@ Fases 0–1 e provedores de produção (Resend + R2) estão em `main` com CI ver
|
|||||||
|
|
||||||
- Staging em Dokploy com a mesma imagem FrankenPHP por SHA para web, queue e scheduler.
|
- Staging em Dokploy com a mesma imagem FrankenPHP por SHA para web, queue e scheduler.
|
||||||
- Deploy automático em `main` após CI: build → GHCR → Dokploy API → migrate → health → smoke.
|
- Deploy automático em `main` após CI: build → GHCR → Dokploy API → migrate → health → smoke.
|
||||||
- Compose local com app FrankenPHP + Postgres.
|
- Produção via promoção manual da mesma digest SHA (alias `:production`), sem rebuild.
|
||||||
- PHP 8.4 canônico em docs/Docker/CI.
|
- Backup PostgreSQL diário (retenção ≥14 dias), restore documentado e rollback por SHA.
|
||||||
- Gates com `npm audit` e cobertura Domain/Application ≥ 80%.
|
- Compose local com app FrankenPHP + Postgres (pendente fora da fatia deploy).
|
||||||
- E-mail verificado + reset de senha seguros no painel (ADM-01 / SPEC §12.1).
|
- PHP 8.4 canônico em docs/Docker/CI (pendente).
|
||||||
- Strict types em PHP próprio faltante.
|
- Gates com `npm audit` e cobertura Domain/Application ≥ 80% (pendente).
|
||||||
|
- E-mail verificado + reset de senha seguros no painel (ADM-01 / SPEC §12.1) (pendente).
|
||||||
|
- Strict types em PHP próprio faltante (pendente).
|
||||||
|
|
||||||
**Non-Goals:**
|
**Non-Goals:**
|
||||||
|
|
||||||
- Produção, promoção humana, provisionamento de VPS para clientes.
|
- Deploy automático em produção; provisionamento de VPS para clientes.
|
||||||
- Fase 2 (briefing/CRM/E2E-01/02).
|
- Fase 2 (briefing/CRM/E2E-01/02).
|
||||||
- Redis, worker mode, CDN automation, signed private media.
|
- Redis, worker mode, CDN automation, signed private media.
|
||||||
|
|
||||||
@@ -31,11 +33,13 @@ Fases 0–1 e provedores de produção (Resend + R2) estão em `main` com CI ver
|
|||||||
|
|
||||||
### D1 — Dokploy Compose na VPS, imagem imutável no GHCR
|
### D1 — Dokploy Compose na VPS, imagem imutável no GHCR
|
||||||
|
|
||||||
GitHub Actions (após CI verde em `main`) constrói **uma** imagem `ghcr.io/<owner>/<repo>:<git-sha>` (+ alias `:staging`), faz push privado e chama `POST /api/compose.deploy` (ou `compose.update` + `compose.deploy`) no Dokploy com `x-api-key`.
|
GitHub Actions (após CI verde em `main`) constrói **uma** imagem `ghcr.io/<owner>/<repo>:<git-sha>` (+ alias `:staging`), faz push privado e chama `POST /api/compose.deploy` no Dokploy com `x-api-key`.
|
||||||
|
|
||||||
Compose de staging referencia `${APP_IMAGE}` / `IMAGE_TAG` para `web`, `queue`, `scheduler` e job `migrate` one-shot (`php artisan migrate --force`). PostgreSQL é serviço Dokploy separado (não na imagem da app).
|
Compose compartilhado (`docker-compose.deploy.yml`) referencia `${APP_IMAGE}` / `IMAGE_TAG` para `web`, `queue`, `scheduler` e job `migrate` one-shot (`php artisan migrate --force`). Dokploy mantém **duas** stacks Compose (staging e production) com `IMAGE_TAG` distinto. PostgreSQL é serviço Dokploy separado por ambiente (não na imagem da app).
|
||||||
|
|
||||||
*Alternativas rejeitadas:* Railway (Pro para GHCR privado + desvio de plataforma); rebuild por serviço no Dokploy (quebra “mesma imagem” SPEC §14.3/§15.2); tag só `:latest` (rollback frágil).
|
Produção: `workflow_dispatch` com SHA + confirmação `PRODUCTION` move alias `:production` para o **mesmo digest** já publicado e dispara `compose.deploy` na stack de produção. Repo privado no GitHub Free não tem required reviewers de Environment; aprovação humana = disparo manual explícito (GitHub Pro opcional depois).
|
||||||
|
|
||||||
|
*Alternativas rejeitadas:* Railway (Pro para GHCR privado + desvio de plataforma); rebuild por serviço no Dokploy (quebra “mesma imagem” SPEC §14.3/§15.2); tag só `:latest` (rollback frágil); deploy automático direto em produção.
|
||||||
|
|
||||||
### D2 — Processos e health
|
### D2 — Processos e health
|
||||||
|
|
||||||
@@ -50,7 +54,11 @@ Healthcheck Docker/Dokploy e smoke pós-deploy usam `GET /up` (sem auth, sem sec
|
|||||||
|
|
||||||
### D3 — Secrets e providers
|
### D3 — Secrets e providers
|
||||||
|
|
||||||
Secrets em GitHub Actions + env Dokploy: `APP_KEY`, DB, `MAIL_MAILER=resend` / `RESEND_API_KEY`, `FILESYSTEM_DISK=r2` / `R2_*`, tokens Dokploy/GHCR. Nunca embeds em layer. Local continua `MAIL_MAILER=log` e disco `public`.
|
GitHub Actions guarda só orquestração: `DOKPLOY_URL`, API key, compose IDs, URLs públicas de smoke. Env Laravel (`APP_KEY`, DB, Resend, R2) vive **somente** no Dokploy, isolado por ambiente. Nunca embeds em layer. Local continua `MAIL_MAILER=log` e disco `public`.
|
||||||
|
|
||||||
|
### D3b — Backup e restore
|
||||||
|
|
||||||
|
PostgreSQL staging/produção: backup diário via Dokploy → destino S3-compatible, retenção mínima 14 dias (SPEC §16.3). Restore documentado e testado em staging antes da primeira promoção a produção.
|
||||||
|
|
||||||
### D4 — Compose local com app
|
### D4 — Compose local com app
|
||||||
|
|
||||||
@@ -74,26 +82,32 @@ Alinhar README, CI (`setup-php` 8.4) e `Dockerfile` `ARG PHP_VERSION=8.4`. Mante
|
|||||||
|
|
||||||
### D8 — Rollback
|
### D8 — Rollback
|
||||||
|
|
||||||
Rollback = apontar Compose staging para tag SHA anterior no GHCR e `compose.deploy`/`redeploy`. Falha de healthcheck impede promoção. Sem rebuild.
|
Rollback = mover alias do ambiente (`:staging` ou `:production`) para tag SHA anterior no GHCR e `compose.deploy`. Falha de healthcheck/smoke impede promoção. Sem rebuild.
|
||||||
|
|
||||||
|
### D9 — Trusted proxies atrás do Traefik
|
||||||
|
|
||||||
|
`bootstrap/app.php` confia em proxies (`trustProxies(at: '*')`) para honrar `X-Forwarded-*` do Traefik/Dokploy. Staging/produção usam `SESSION_SECURE_COOKIE=true` com HTTPS.
|
||||||
|
|
||||||
## Risks / Trade-offs
|
## Risks / Trade-offs
|
||||||
|
|
||||||
- **[GHCR privado + pull na VPS]** → configurar registry no Dokploy com PAT `read:packages`; documentar checklist.
|
- **[GHCR privado + pull na VPS]** → configurar registry no Dokploy com PAT `read:packages`; documentar checklist.
|
||||||
- **[Migrate one-shot falha]** → deploy não promove web; manter migrations backward-compatible.
|
- **[Migrate one-shot falha]** → web/queue/scheduler dependem de migrate exit 0; manter migrations backward-compatible.
|
||||||
- **[Cobertura 80% com Domain quase vazio]** → medir só namespaces existentes; baseline sobe conforme Fase 2 adiciona Domain.
|
- **[GitHub Free sem required reviewers]** → promoção humana via `workflow_dispatch` + input `PRODUCTION`; Pro opcional.
|
||||||
- **[npm audit ruido]** → `--omit=dev` + allowlist documentada se necessário; sem silenciar sem justificativa.
|
- **[Cobertura 80% com Domain quase vazio]** → medir só namespaces existentes; baseline sobe conforme Fase 2 adiciona Domain (pendente).
|
||||||
- **[E-mail verification em staging]** → seed/users de staging com `email_verified_at`; Resend para reset real quando configurado.
|
- **[npm audit ruido]** → `--omit=dev` + allowlist documentada se necessário (pendente).
|
||||||
- **[Compose local rebuild lento]** → documentar serve opcional; CI permanece fonte FrankenPHP.
|
- **[E-mail verification em staging]** → seed/users de staging com `email_verified_at`; Resend para reset real quando configurado (pendente).
|
||||||
|
- **[Compose local rebuild lento]** → documentar serve opcional; CI permanece fonte FrankenPHP (pendente).
|
||||||
|
|
||||||
## Migration Plan
|
## Migration Plan
|
||||||
|
|
||||||
1. Implementar auth/coverage/npm/strict_types/docs/Compose local; CI verde.
|
1. Fatia deploy: Compose deploy, workflows, smoke, trusted proxies, docs Dokploy/backup/rollback; CI verde.
|
||||||
2. Criar projeto Dokploy + Postgres + Compose app; registrar GHCR.
|
2. Criar projeto Dokploy + Postgres (staging + produção) + Compose apps; registrar GHCR.
|
||||||
3. Adicionar workflow deploy; primeiro push de imagem SHA; smoke `/up` + home + login.
|
3. Primeiro push de imagem SHA → staging; smoke `/up` + home + login; testar rollback e backup/restore.
|
||||||
4. Atualizar SPEC §18 Fase 0 apenas com itens comprovados; evidência no PR.
|
4. Promoção manual para produção após domínio/TLS/`APP_URL` confirmados.
|
||||||
5. Rollback: redeploy tag SHA anterior.
|
5. Fatias restantes da change (auth/coverage/npm/Compose local/PHP docs) em PRs seguintes.
|
||||||
|
6. Atualizar SPEC §18 Fase 0 apenas com itens comprovados; evidência no PR.
|
||||||
|
|
||||||
## Open Questions
|
## Open Questions
|
||||||
|
|
||||||
- Domínio público exato do staging (DNS) — preencher na implementação com valor do operador.
|
- Domínio público exato do staging/produção (DNS) — preencher na implementação com valor do operador.
|
||||||
- Se Dokploy Compose API exigir `compose.saveEnvironment` para `IMAGE_TAG` a cada deploy: confirmar payload na primeira fatia de integração.
|
- Se Dokploy Compose API exigir `compose.update` env para `IMAGE_TAG` a cada deploy: preferir aliases `:staging`/`:production` estáveis no Compose Dokploy para evitar rewrite de env.
|
||||||
|
|||||||
@@ -6,17 +6,20 @@ Fases 0 e 1 estão implementadas e mescladas, mas o critério de saída da Fase
|
|||||||
|
|
||||||
- Implantar staging na VPS própria via Dokploy (Docker Compose): imagem única por SHA no GHCR, serviços `web`/`queue`/`scheduler`/migrate, PostgreSQL gerenciado, healthcheck `/up`, smoke pós-deploy e rollback por tag SHA anterior.
|
- Implantar staging na VPS própria via Dokploy (Docker Compose): imagem única por SHA no GHCR, serviços `web`/`queue`/`scheduler`/migrate, PostgreSQL gerenciado, healthcheck `/up`, smoke pós-deploy e rollback por tag SHA anterior.
|
||||||
- Adicionar workflow GitHub Actions de deploy em `main` após CI verde (build → push GHCR → acionar API Dokploy).
|
- Adicionar workflow GitHub Actions de deploy em `main` após CI verde (build → push GHCR → acionar API Dokploy).
|
||||||
- Estender `docker-compose.yml` local com serviço de aplicação FrankenPHP (além do PostgreSQL).
|
- Adicionar promoção manual de produção: mesma digest SHA já publicada, alias `:production`, sem rebuild (`workflow_dispatch` + confirmação explícita).
|
||||||
- Fixar PHP **8.4** como versão canônica em Docker, CI e documentação.
|
- Documentar backup PostgreSQL diário (retenção ≥14d), restore e runbook operacional Dokploy/GHCR.
|
||||||
- Incluir `npm audit` e cobertura mínima de 80% para `Domain` e `Application` nos gates de qualidade (SPEC §12.6, §13.7, §13.9).
|
- Estender `docker-compose.yml` local com serviço de aplicação FrankenPHP (além do PostgreSQL) — **ainda pendente** nesta fatia de deploy.
|
||||||
- Exigir e-mail verificado no painel Filament e entregar reset de senha seguro (SPEC §12.1; ADM-01).
|
- Fixar PHP **8.4** como versão canônica em Docker, CI e documentação — **ainda pendente**.
|
||||||
- Corrigir `declare(strict_types=1);` em PHP próprio que ainda falte e cobrir regressões.
|
- Incluir `npm audit` e cobertura mínima de 80% para `Domain` e `Application` nos gates de qualidade (SPEC §12.6, §13.7, §13.9) — **ainda pendente**.
|
||||||
|
- Exigir e-mail verificado no painel Filament e entregar reset de senha seguro (SPEC §12.1; ADM-01) — **ainda pendente**.
|
||||||
|
- Corrigir `declare(strict_types=1);` em PHP próprio que ainda falte e cobrir regressões — **ainda pendente**.
|
||||||
|
|
||||||
## Non-Goals
|
## Non-Goals
|
||||||
|
|
||||||
Conforme [SPEC.md §4.2](../../SPEC.md):
|
Conforme [SPEC.md §4.2](../../SPEC.md):
|
||||||
|
|
||||||
- Produção com promoção humana, portal do cliente, multi-tenancy, Redis, FrankenPHP worker mode.
|
- Deploy automático direto em produção (produção exige promoção humana da mesma imagem).
|
||||||
|
- Portal do cliente, multi-tenancy, Redis, FrankenPHP worker mode.
|
||||||
- Fase 2 (WEB-05 briefing, CRM, E2E-01/E2E-02) — change futura `build-leads-crm` após esta fechar.
|
- Fase 2 (WEB-05 briefing, CRM, E2E-01/E2E-02) — change futura `build-leads-crm` após esta fechar.
|
||||||
- Provisionamento genérico de VPS/Dokploy para clientes finais.
|
- Provisionamento genérico de VPS/Dokploy para clientes finais.
|
||||||
- Templates de e-mail de lead, auditoria completa (ADM-02), documentos privados.
|
- Templates de e-mail de lead, auditoria completa (ADM-02), documentos privados.
|
||||||
@@ -25,19 +28,20 @@ Conforme [SPEC.md §4.2](../../SPEC.md):
|
|||||||
|
|
||||||
### New Capabilities
|
### New Capabilities
|
||||||
|
|
||||||
- `staging-deployment`: deploy automático de staging na VPS via Dokploy com imagem imutável por SHA, processos web/queue/scheduler, migração, healthcheck, smoke e rollback (SPEC §14.3, §15.2, §18 Fase 0).
|
- `staging-deployment`: deploy automático de staging na VPS via Dokploy com imagem imutável por SHA, processos web/queue/scheduler, migração, healthcheck, smoke e rollback; promoção manual da mesma digest para produção (SPEC §14.3, §15.2, §16.3, §18 Fase 0).
|
||||||
|
|
||||||
### Modified Capabilities
|
### Modified Capabilities
|
||||||
|
|
||||||
- `container-runtime`: Compose local com app FrankenPHP; PHP 8.4 canônico; alinhamento da mesma imagem a processos de staging.
|
- `container-runtime`: Compose local com app FrankenPHP; PHP 8.4 canônico; alinhamento da mesma imagem a processos de staging/produção.
|
||||||
- `quality-gates`: `npm audit` no gate; cobertura mínima 80% para Domain/Application; job de deploy staging após CI.
|
- `quality-gates`: `npm audit` no gate; cobertura mínima 80% para Domain/Application; job de deploy staging após CI.
|
||||||
- `health-check`: healthcheck e smoke pós-deploy de staging usam `/up` sem autenticação.
|
- `health-check`: healthcheck e smoke pós-deploy de staging usam `/up` sem autenticação.
|
||||||
- `internal-authentication`: e-mail verificado obrigatório para acesso ao painel; reset de senha seguro disponível (SPEC §12.1, ADM-01).
|
- `internal-authentication`: e-mail verificado obrigatório para acesso ao painel; reset de senha seguro disponível (SPEC §12.1, ADM-01).
|
||||||
|
|
||||||
## Impact
|
## Impact
|
||||||
|
|
||||||
- **Cria**: `docker-compose` de staging (ou extensão), workflow `.github/workflows/deploy-staging.yml`, docs operacionais de Dokploy/GHCR, testes de auth verification/reset e cobertura.
|
- **Cria (fatia deploy)**: `docker-compose.deploy.yml`, workflows `deploy-staging.yml` / `promote-production.yml`, scripts smoke/Dokploy, docs operacionais Dokploy/GHCR/backup/rollback.
|
||||||
- **Altera**: `docker-compose.yml`, `Dockerfile`/docs PHP, `composer.json`/`package.json` scripts, `.github/workflows/ci.yml`, `User`/`AdminPanelProvider`, README, `.env.example`.
|
- **Altera (fatia deploy)**: `bootstrap/app.php` (trusted proxies), `.env.example`, README.
|
||||||
- **Infra (manual)**: projeto Dokploy na VPS, registry GHCR, secrets (`DOKPLOY_*`, `GHCR_*`, DB, `APP_KEY`, Resend/R2).
|
- **Ainda pendente nesta change**: Compose local FrankenPHP, PHP 8.4 docs, npm audit/coverage, auth verification/reset, strict_types.
|
||||||
|
- **Infra (manual)**: projeto Dokploy na VPS (duas stacks), registry GHCR, secrets (`DOKPLOY_*`, DB, `APP_KEY`, Resend/R2), backup S3.
|
||||||
- **Depende de**: specs já arquivadas (`container-runtime`, `quality-gates`, `health-check`, `internal-authentication`, `transactional-email`, `object-storage`).
|
- **Depende de**: specs já arquivadas (`container-runtime`, `quality-gates`, `health-check`, `internal-authentication`, `transactional-email`, `object-storage`).
|
||||||
- **Risco**: secrets e registry privados; mitigações: tokens com escopo mínimo, imagem por SHA, healthcheck antes de promover, rollback por tag anterior.
|
- **Risco**: secrets e registry privados; mitigações: tokens com escopo mínimo, imagem por SHA, healthcheck antes de promover, rollback por tag anterior.
|
||||||
|
|||||||
@@ -55,3 +55,23 @@ Rollback SHALL redeploy a previously published SHA-tagged image without rebuildi
|
|||||||
- **WHEN** the operator points staging Compose at a previous SHA tag and redeploys
|
- **WHEN** the operator points staging Compose at a previous SHA tag and redeploys
|
||||||
- **THEN** web, queue, and scheduler MUST run that previous image
|
- **THEN** web, queue, and scheduler MUST run that previous image
|
||||||
- **AND** no source rebuild MUST be required
|
- **AND** no source rebuild MUST be required
|
||||||
|
|
||||||
|
### Requirement: Production promotion reuses the same immutable digest
|
||||||
|
|
||||||
|
Production SHALL be promoted from an already-published SHA-tagged image without rebuilding from source. Promotion MUST require explicit human action (SPEC §14.3).
|
||||||
|
|
||||||
|
#### Scenario: Operator promotes a staging-approved SHA to production
|
||||||
|
|
||||||
|
- **WHEN** the operator confirms promotion of commit SHA `abc123`
|
||||||
|
- **THEN** production web, queue, and scheduler MUST run the same digest previously published as `ghcr.io/<owner>/<repo>:abc123`
|
||||||
|
- **AND** MUST NOT rebuild from source for that promotion
|
||||||
|
|
||||||
|
### Requirement: Database backups exist before production cutover
|
||||||
|
|
||||||
|
Staging and production PostgreSQL services SHALL have automated daily backups with retention of at least 14 days, and a documented restore procedure MUST be verified on staging before the first production promotion (SPEC §16.3).
|
||||||
|
|
||||||
|
#### Scenario: Staging restore is proven before production promotion
|
||||||
|
|
||||||
|
- **WHEN** the operator prepares the first production promotion
|
||||||
|
- **THEN** a restore from a staging backup MUST have been documented and successfully tested
|
||||||
|
- **AND** production MUST have daily backup configured with retention of at least 14 days
|
||||||
|
|||||||
@@ -19,23 +19,25 @@
|
|||||||
- [ ] 3.3 Add/adjust unit tests if current Domain/Application coverage is below threshold
|
- [ ] 3.3 Add/adjust unit tests if current Domain/Application coverage is below threshold
|
||||||
- [ ] 3.4 Verify CI `static` and `unit` fail appropriately on intentional audit/coverage breakage in a branch experiment or equivalent proof
|
- [ ] 3.4 Verify CI `static` and `unit` fail appropriately on intentional audit/coverage breakage in a branch experiment or equivalent proof
|
||||||
|
|
||||||
## 4. Staging Compose and Dokploy prep
|
## 4. Staging/production Compose and Dokploy prep
|
||||||
|
|
||||||
- [ ] 4.1 Add versioned staging Compose template (web, queue, scheduler, migrate one-shot) parameterized by `APP_IMAGE`/`IMAGE_TAG`
|
- [x] 4.1 Add versioned Compose template (`docker-compose.deploy.yml`: web, queue, scheduler, migrate one-shot) parameterized by `APP_IMAGE`/`IMAGE_TAG` for staging and production stacks
|
||||||
- [ ] 4.2 Document Dokploy project setup: GHCR registry credentials, Postgres service, Compose import, required env vars (APP_KEY, DB, Resend, R2)
|
- [x] 4.2 Document Dokploy project setup: GHCR registry credentials, Postgres per environment, Compose import, required env vars (APP_KEY, DB, Resend, R2), trusted proxies/session cookies
|
||||||
- [ ] 4.3 Document rollback procedure: redeploy previous SHA tag without rebuild
|
- [x] 4.3 Document rollback procedure: move environment alias to previous SHA and redeploy without rebuild
|
||||||
|
- [x] 4.4 Document PostgreSQL daily backup (≥14d retention), restore procedure, and test restore on staging before first production promotion
|
||||||
|
|
||||||
## 5. Deploy workflow and smoke
|
## 5. Deploy workflow and smoke
|
||||||
|
|
||||||
- [ ] 5.1 Create `.github/workflows/deploy-staging.yml` gated on successful CI on `main`: build image, push `ghcr.io/...:<sha>` + `:staging`, trigger Dokploy `compose.deploy`
|
- [x] 5.1 Create `.github/workflows/deploy-staging.yml` gated on successful CI on `main`: build image, push `ghcr.io/...:<sha>` + `:staging`, trigger Dokploy `compose.deploy`
|
||||||
- [ ] 5.2 Wire migrate-before-serve (Compose migrate service or Dokploy deploy command) and healthcheck on `/up`
|
- [x] 5.2 Create `.github/workflows/promote-production.yml` (`workflow_dispatch` + confirmation): retag same digest as `:production`, deploy production stack, smoke
|
||||||
- [ ] 5.3 Add post-deploy smoke script/job for `/up`, `/`, `/admin/login` returning 200
|
- [x] 5.3 Wire migrate-before-serve (Compose migrate service) and healthcheck on `/up`
|
||||||
- [ ] 5.4 Store secrets only in GitHub/Dokploy; ensure no secrets in image layers (reuse container CI check)
|
- [x] 5.4 Add post-deploy smoke script/job for `/up`, `/`, `/admin/login` returning 200
|
||||||
|
- [x] 5.5 Store orchestration secrets only in GitHub; Laravel/DB/R2/Resend only in Dokploy; ensure no secrets in image layers
|
||||||
|
|
||||||
## 6. Phase 0 exit evidence
|
## 6. Phase 0 exit evidence
|
||||||
|
|
||||||
- [ ] 6.1 Perform first successful staging deploy of a `main` SHA and capture evidence (workflow URL, smoke output)
|
- [ ] 6.1 Perform first successful staging deploy of a `main` SHA and capture evidence (workflow URL, smoke output)
|
||||||
- [ ] 6.2 Verify rollback to previous SHA works once
|
- [ ] 6.2 Verify rollback to previous SHA works once on staging
|
||||||
- [ ] 6.3 Update `SPEC.md` §18 Fase 0 checkboxes only for items with evidence; note remaining deferred items if any
|
- [ ] 6.3 Update `SPEC.md` §18 Fase 0 checkboxes only for items with evidence; note remaining deferred items if any
|
||||||
- [ ] 6.4 Run full `composer quality` and confirm all five CI jobs + staging deploy path green
|
- [ ] 6.4 Run full `composer quality` and confirm all five CI jobs + staging deploy path green
|
||||||
- [ ] 6.5 Report in SPEC §24 format and mark this change ready to archive after merge
|
- [ ] 6.5 Report in SPEC §24 format; archive this change only after remaining parity tasks (1–3) also complete
|
||||||
|
|||||||
@@ -104,3 +104,33 @@ Public content image uploads (Filament FileUpload via `PublicImageUploadRules`)
|
|||||||
|
|
||||||
- **WHEN** `FILESYSTEM_DISK` is `local`, unset, or any value other than `r2`/`s3`
|
- **WHEN** `FILESYSTEM_DISK` is `local`, unset, or any value other than `r2`/`s3`
|
||||||
- **THEN** `PublicImageUploadRules::disk()` MUST return `public`
|
- **THEN** `PublicImageUploadRules::disk()` MUST return `public`
|
||||||
|
|
||||||
|
### Requirement: Brand logo assets are available to the public layout
|
||||||
|
|
||||||
|
The system SHALL provide optimized Amare brand logo assets derived from the official faceted-heart lockup for use in the public header, footer and institutional pages. Assets MUST preserve the original geometry, include an accessible text alternative, and provide variants suitable for light and dark tonal fields. When `site_settings.logo_path` is present, the uploaded logo MUST be used; otherwise the versioned static brand asset MUST be used.
|
||||||
|
|
||||||
|
#### Scenario: Header renders brand mark with alt text
|
||||||
|
|
||||||
|
- **WHEN** any public page is rendered
|
||||||
|
- **THEN** the brand mark image or equivalent MUST expose accessible alternative text identifying Amare Assessoria
|
||||||
|
|
||||||
|
#### Scenario: Dark portfolio field uses a legible logo variant
|
||||||
|
|
||||||
|
- **WHEN** the brand mark is rendered on an olive-deep or otherwise dark public surface
|
||||||
|
- **THEN** the chosen logo variant MUST remain legible against that background
|
||||||
|
|
||||||
|
#### Scenario: Uploaded logo overrides static fallback
|
||||||
|
|
||||||
|
- **GIVEN** an admin has saved `logo_path` and `logo_alt` in site settings
|
||||||
|
- **WHEN** the public layout renders the brand mark
|
||||||
|
- **THEN** the uploaded logo MUST be used instead of the static fallback
|
||||||
|
|
||||||
|
### Requirement: Editorial image treatment remains self-hosted and deterministic
|
||||||
|
|
||||||
|
Public photography SHALL continue to use validated self-hosted uploads and responsive variants. Decorative saturation/contrast treatment for editorial mood MUST be applied via CSS on self-hosted images and MUST NOT introduce external image CDN dependencies that break deterministic visual tests.
|
||||||
|
|
||||||
|
#### Scenario: Public pages do not depend on external stock hosts
|
||||||
|
|
||||||
|
- **WHEN** the visual or browser suite loads covered public routes
|
||||||
|
- **THEN** content images MUST resolve from the application media disk or static fixtures
|
||||||
|
- **AND** MUST NOT require network access to third-party stock hosts
|
||||||
|
|||||||
@@ -5,16 +5,24 @@ TBD - created by archiving change setup-foundation. Update Purpose after archive
|
|||||||
## Requirements
|
## Requirements
|
||||||
### Requirement: Design tokens are centralized for the public site
|
### Requirement: Design tokens are centralized for the public site
|
||||||
|
|
||||||
The system SHALL define minimum design tokens in a single source consumed by the public site layout and components. Tokens MUST cover typography families, font scale, spacing, border radius, container width, background/text/border/accent/state colors, shadows, and transition duration/easing.
|
The system SHALL define design tokens in a single source consumed by the public site layout and components. Tokens MUST implement the Heritage Editorial system from `DESIGN.md`: typography family EB Garamond (self-hosted), font scale (display/headline/title/body/label), spacing on an 8px rhythm, border radius `0` for interactive and content surfaces, container max width `1120px`, paper/olive/sage/ink color roles, transition duration/easing, and MUST NOT rely on card shadows as a hierarchy mechanism for regular content.
|
||||||
|
|
||||||
#### Scenario: Public layout uses shared tokens
|
#### Scenario: Public layout uses shared Heritage Editorial tokens
|
||||||
|
|
||||||
- **WHEN** a public page is rendered
|
- **WHEN** a public page is rendered
|
||||||
- **THEN** visual properties MUST be derived from the centralized token definitions rather than arbitrary inline values
|
- **THEN** visual properties MUST be derived from the centralized token definitions rather than arbitrary inline values
|
||||||
|
- **AND** the primary typeface MUST be EB Garamond (or the declared serif fallback stack)
|
||||||
|
- **AND** public content surfaces MUST use `0` border radius from tokens
|
||||||
|
|
||||||
|
#### Scenario: Palette commits paper and olive regions
|
||||||
|
|
||||||
|
- **WHEN** the public site is rendered
|
||||||
|
- **THEN** background regions MUST use paper ivory / paper deep / olive deep tokens rather than pure white card stacks on a white page
|
||||||
|
- **AND** primary interactive emphasis MUST use olive heritage (`#556B2F`) / olive deep (`#3E5219`) tokens
|
||||||
|
|
||||||
### Requirement: Public site respects reduced motion preference
|
### Requirement: Public site respects reduced motion preference
|
||||||
|
|
||||||
The system SHALL honor `prefers-reduced-motion` by disabling or minimizing non-essential animations and transitions on the public site.
|
The system SHALL honor `prefers-reduced-motion` by disabling or minimizing non-essential animations and transitions on the public site, including image hover scales and menu transitions.
|
||||||
|
|
||||||
#### Scenario: User prefers reduced motion
|
#### Scenario: User prefers reduced motion
|
||||||
|
|
||||||
@@ -23,10 +31,25 @@ The system SHALL honor `prefers-reduced-motion` by disabling or minimizing non-e
|
|||||||
|
|
||||||
### Requirement: Public site meets baseline accessibility contrast
|
### Requirement: Public site meets baseline accessibility contrast
|
||||||
|
|
||||||
The system SHALL use color combinations on the public site that meet WCAG AA contrast requirements for text and interactive elements defined in the token palette.
|
The system SHALL use Heritage Editorial color combinations that meet WCAG AA contrast requirements for text and interactive elements. Long-form text MUST use ink on paper; sage MUST NOT replace reading color when contrast would fall below AA.
|
||||||
|
|
||||||
#### Scenario: Primary text is readable
|
#### Scenario: Primary text is readable
|
||||||
|
|
||||||
- **WHEN** primary body text is rendered on its background color
|
- **WHEN** primary body text is rendered on its background color
|
||||||
- **THEN** the contrast ratio MUST meet WCAG AA minimums
|
- **THEN** the contrast ratio MUST meet WCAG AA minimums
|
||||||
|
|
||||||
|
#### Scenario: Olive on paper interactive text is readable
|
||||||
|
|
||||||
|
- **WHEN** primary buttons or links use olive tokens on paper backgrounds (or paper text on olive)
|
||||||
|
- **THEN** the contrast ratio MUST meet WCAG AA minimums
|
||||||
|
|
||||||
|
### Requirement: Elevation comes from tonal fields not card shadows
|
||||||
|
|
||||||
|
The public site SHALL express hierarchy through tonal paper fields, 1px botanical rules, and editorial overlap. Regular content components MUST NOT use short grey SaaS card shadows.
|
||||||
|
|
||||||
|
#### Scenario: Content cards omit drop shadows
|
||||||
|
|
||||||
|
- **WHEN** home services, testimonials, or portfolio items are rendered
|
||||||
|
- **THEN** they MUST NOT depend on `--amare-shadow-*` card elevation for hierarchy
|
||||||
|
- **AND** separation MUST come from borders, tonal backgrounds, or whitespace
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ The system SHALL expose the public routes of SPEC §5.1: `home` (`/`), `services
|
|||||||
|
|
||||||
### Requirement: Home renders the editorial structure from CMS content
|
### Requirement: Home renders the editorial structure from CMS content
|
||||||
|
|
||||||
The home page SHALL render, in the order defined by SPEC §6.2, header/navigation, hero, featured visual proof, services summary, working method, selected cases, testimonials, final briefing CTA, and footer with contact, social links and legal links (WEB-01). Hero copy, brand name and contact data MUST come from `site_settings`; services, cases and testimonials MUST come from published records.
|
The home page SHALL render, in order: header/navigation, hero, manifesto, featured services summary, featured portfolio selection, working method (four steps), testimonials, Amare positioning/profile, final contact CTA, and footer with contact, social links and legal links (WEB-01). Hero copy, brand name, manifesto, method and principles MUST come from `site_settings` (with editorial defaults when optional fields are empty); services, cases and testimonials MUST come from published records. The home MUST follow the Heritage Editorial composition (asymmetric spreads on desktop, linear sequence on mobile) rather than rounded card grids.
|
||||||
|
|
||||||
#### Scenario: Published content is displayed in configured order
|
#### Scenario: Published content is displayed in configured order
|
||||||
|
|
||||||
@@ -43,18 +43,21 @@ The home page SHALL render, in the order defined by SPEC §6.2, header/navigatio
|
|||||||
- **WHEN** a visitor loads the home
|
- **WHEN** a visitor loads the home
|
||||||
- **THEN** the published content MUST be displayed following the `sort_order` and featured flags
|
- **THEN** the published content MUST be displayed following the `sort_order` and featured flags
|
||||||
- **AND** the hero MUST show the values stored in `site_settings`
|
- **AND** the hero MUST show the values stored in `site_settings`
|
||||||
|
- **AND** the manifesto, method and positioning sections MUST be present
|
||||||
|
|
||||||
#### Scenario: CTA leads to the briefing page
|
#### Scenario: CTA leads to the contact placeholder page
|
||||||
|
|
||||||
- **WHEN** a visitor activates the primary or final CTA on the home
|
- **WHEN** a visitor activates the primary or final CTA on the home
|
||||||
- **THEN** the visitor MUST be taken to the `contact` route
|
- **THEN** the visitor MUST be taken to the `contact` route
|
||||||
|
- **AND** no lead record MUST be created
|
||||||
|
|
||||||
#### Scenario: Empty content does not break the home
|
#### Scenario: Empty catalog sections are omitted
|
||||||
|
|
||||||
- **GIVEN** no published services, cases or testimonials
|
- **GIVEN** no published services, cases or testimonials
|
||||||
- **WHEN** a visitor loads the home
|
- **WHEN** a visitor loads the home
|
||||||
- **THEN** the response MUST be 200
|
- **THEN** the response MUST be 200
|
||||||
- **AND** the affected sections MUST be omitted instead of rendering empty containers
|
- **AND** the services, portfolio and testimonials sections MUST be omitted instead of rendering empty containers
|
||||||
|
- **AND** hero, manifesto, method, positioning and final CTA MUST still render
|
||||||
|
|
||||||
#### Scenario: Home has no console errors
|
#### Scenario: Home has no console errors
|
||||||
|
|
||||||
@@ -63,12 +66,13 @@ The home page SHALL render, in the order defined by SPEC §6.2, header/navigatio
|
|||||||
|
|
||||||
### Requirement: Listing and detail pages exist for catalog content
|
### Requirement: Listing and detail pages exist for catalog content
|
||||||
|
|
||||||
The system SHALL render a services listing (WEB-02) and a portfolio listing plus case detail (WEB-03). The case detail MUST present summary, event type, optional city/venue/date, challenge, solution, optional result, cover image and the ordered gallery.
|
The system SHALL render a services listing (WEB-02) and a portfolio listing plus case detail (WEB-03) using the Heritage Editorial visual language. The case detail MUST present summary, event type, optional city/venue/date, challenge, solution, optional result, cover image and the ordered gallery.
|
||||||
|
|
||||||
#### Scenario: Services listing shows published services
|
#### Scenario: Services listing shows published services
|
||||||
|
|
||||||
- **WHEN** a visitor loads `/servicos`
|
- **WHEN** a visitor loads `/servicos`
|
||||||
- **THEN** every published service MUST be listed with title and summary in `sort_order`
|
- **THEN** every published service MUST be listed with title and summary in `sort_order`
|
||||||
|
- **AND** the listing MUST use the public editorial layout (not an unrelated visual system)
|
||||||
|
|
||||||
#### Scenario: Gallery respects stored order
|
#### Scenario: Gallery respects stored order
|
||||||
|
|
||||||
@@ -83,7 +87,7 @@ The system SHALL render a services listing (WEB-02) and a portfolio listing plus
|
|||||||
|
|
||||||
### Requirement: Institutional and error pages have brand identity
|
### Requirement: Institutional and error pages have brand identity
|
||||||
|
|
||||||
The system SHALL provide the Sobre and Política de privacidade pages and branded error pages (WEB-07). The 404 page MUST use the public layout, and the 500 page MUST NOT expose stack traces or internal details when `APP_DEBUG` is false.
|
The system SHALL provide the Sobre and Política de privacidade pages and branded error pages (WEB-07) using the Heritage Editorial public layout, including the brand mark when available. The 404 page MUST use the public layout, and the 500 page MUST NOT expose stack traces or internal details when `APP_DEBUG` is false.
|
||||||
|
|
||||||
#### Scenario: Unknown URL renders branded 404
|
#### Scenario: Unknown URL renders branded 404
|
||||||
|
|
||||||
@@ -100,7 +104,7 @@ The system SHALL provide the Sobre and Política de privacidade pages and brande
|
|||||||
|
|
||||||
### Requirement: Contact page presents contact data as briefing placeholder
|
### Requirement: Contact page presents contact data as briefing placeholder
|
||||||
|
|
||||||
The `contact` route SHALL render the contact page using `site_settings` (e-mail, phone, city, social links) so the home CTA has a valid destination before the briefing form exists. The page MUST NOT create leads in this change.
|
The `contact` route SHALL render the contact page using `site_settings` (e-mail, phone, city, social links) so the home CTA has a valid destination before the briefing form exists. The page MUST NOT create leads and MUST NOT submit a functional briefing form in this change.
|
||||||
|
|
||||||
#### Scenario: Contact page shows configured contact data
|
#### Scenario: Contact page shows configured contact data
|
||||||
|
|
||||||
@@ -117,3 +121,28 @@ Public pages SHALL load related content with explicit eager loading through dedi
|
|||||||
- **WHEN** a case detail page with many gallery images is rendered
|
- **WHEN** a case detail page with many gallery images is rendered
|
||||||
- **THEN** the gallery MUST be loaded with eager loading
|
- **THEN** the gallery MUST be loaded with eager loading
|
||||||
- **AND** the query count MUST NOT grow with the number of images
|
- **AND** the query count MUST NOT grow with the number of images
|
||||||
|
|
||||||
|
### Requirement: Public header exposes brand mark and responsive navigation
|
||||||
|
|
||||||
|
The public layout SHALL render the Amare brand mark (faceted-heart logo lockup or configured logo), primary route navigation, and a contact CTA. On narrow viewports the navigation MUST be operable via a disclosure control with accessible name and `aria-expanded` state.
|
||||||
|
|
||||||
|
#### Scenario: Desktop header shows navigation and CTA
|
||||||
|
|
||||||
|
- **WHEN** a visitor loads any public page at a desktop viewport
|
||||||
|
- **THEN** the header MUST include brand mark, links to home/services/portfolio/about/contact, and a contact CTA
|
||||||
|
|
||||||
|
#### Scenario: Mobile menu toggles accessibly
|
||||||
|
|
||||||
|
- **WHEN** a visitor activates the menu button on a narrow viewport
|
||||||
|
- **THEN** the primary navigation MUST become available
|
||||||
|
- **AND** the control MUST expose an updated `aria-expanded` value
|
||||||
|
- **AND** activating a navigation link MUST close the menu
|
||||||
|
|
||||||
|
### Requirement: Demonstrative photography is labeled until authorized assets exist
|
||||||
|
|
||||||
|
When public pages render illustrative/demo photography that is not an authorized Amare asset, the system SHALL mark that imagery as demonstrative in visible copy or accessible labeling so visitors are not misled.
|
||||||
|
|
||||||
|
#### Scenario: Portfolio demo imagery is disclosed
|
||||||
|
|
||||||
|
- **WHEN** the home or portfolio renders placeholder photography
|
||||||
|
- **THEN** a visible note or equivalent disclosure MUST indicate the imagery is illustrative pending authorized assets
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Define the typed site-wide settings singleton and its administration rules.
|
|||||||
## Requirements
|
## Requirements
|
||||||
### Requirement: Site settings singleton is manageable by admin only
|
### Requirement: Site settings singleton is manageable by admin only
|
||||||
|
|
||||||
The system SHALL persist site-wide settings in a `site_settings` table as a typed singleton (SPEC WEB-06, §8.2). Fields MUST include brand name, hero copy (eyebrow, title, subtitle, CTA label), about summary, contact email/phone/city, social links (jsonb), default meta title/description, default OG image path and alt text, and optional analytics fields disabled by default.
|
The system SHALL persist site-wide settings in a `site_settings` table as a typed singleton (SPEC WEB-06, §8.2). Fields MUST include brand name, optional logo path and logo alt text, hero copy (eyebrow, title, subtitle, primary CTA label, optional secondary CTA label, optional hero note), manifesto copy (title, lead, body), method steps (structured typed data for four editorial steps), principles (structured typed list), about summary, contact email/phone/city, social links (jsonb), default meta title/description, default OG image path and alt text, and optional analytics fields disabled by default.
|
||||||
|
|
||||||
#### Scenario: Admin updates site settings
|
#### Scenario: Admin updates site settings
|
||||||
|
|
||||||
@@ -25,8 +25,31 @@ The system SHALL persist site-wide settings in a `site_settings` table as a type
|
|||||||
- **THEN** validation MUST fail with a pt-BR error message
|
- **THEN** validation MUST fail with a pt-BR error message
|
||||||
- **AND** alt text MUST remain optional when no default OG image is present
|
- **AND** alt text MUST remain optional when no default OG image is present
|
||||||
|
|
||||||
|
#### Scenario: Logo upload requires alt text
|
||||||
|
|
||||||
|
- **WHEN** an admin uploads a brand logo without alt text
|
||||||
|
- **THEN** validation MUST fail with a pt-BR error message
|
||||||
|
- **AND** alt text MUST remain optional when no logo is uploaded
|
||||||
|
|
||||||
#### Scenario: Singleton avoids generic key-value store
|
#### Scenario: Singleton avoids generic key-value store
|
||||||
|
|
||||||
- **WHEN** site settings are stored
|
- **WHEN** site settings are stored
|
||||||
- **THEN** the system MUST use typed columns on `site_settings`
|
- **THEN** the system MUST use typed columns on `site_settings`
|
||||||
- **AND** MUST NOT introduce a generic key/value configuration table
|
- **AND** MUST NOT introduce a generic key/value configuration table
|
||||||
|
|
||||||
|
#### Scenario: Editorial defaults remain available when optional fields are empty
|
||||||
|
|
||||||
|
- **GIVEN** manifesto, method steps or principles fields are empty
|
||||||
|
- **WHEN** the home is rendered
|
||||||
|
- **THEN** the page MUST still render those sections using safe editorial defaults
|
||||||
|
- **AND** MUST NOT error
|
||||||
|
|
||||||
|
### Requirement: Public geography defaults to São Paulo
|
||||||
|
|
||||||
|
Demo and visual seed content for site settings SHALL present the Amare operating city as São Paulo (capital), matching `PRODUCT.md`, instead of unrelated cities.
|
||||||
|
|
||||||
|
#### Scenario: Seeded settings use São Paulo
|
||||||
|
|
||||||
|
- **WHEN** content seeders populate `site_settings`
|
||||||
|
- **THEN** the city field MUST be São Paulo (or equivalent capital wording)
|
||||||
|
- **AND** MUST NOT present Fortaleza as the operating city
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Define testimonial management, publication, authorization, and featured filterin
|
|||||||
## Requirements
|
## Requirements
|
||||||
### Requirement: Testimonials are managed with publication control
|
### Requirement: Testimonials are managed with publication control
|
||||||
|
|
||||||
The system SHALL allow admins to manage testimonials (SPEC WEB-04) with quote text, author name, optional context, optional photo with alt text, sort order, featured flag, and `published_at`.
|
The system SHALL allow admins to manage testimonials (SPEC WEB-04) with quote text (including multi-paragraph content), author name, optional context (event type and/or date), optional photo with alt text, sort order, featured flag, and `published_at`. Public rendering MUST preserve paragraph breaks from the stored quote. Testimonials sourced from real clients MUST NOT be published to production without authorization; development seeds MAY include the authorized-pending real quotes marked for review.
|
||||||
|
|
||||||
#### Scenario: Unpublished testimonial is excluded
|
#### Scenario: Unpublished testimonial is excluded
|
||||||
|
|
||||||
@@ -27,3 +27,23 @@ The system SHALL allow admins to manage testimonials (SPEC WEB-04) with quote te
|
|||||||
|
|
||||||
- **WHEN** content is queried with featured filter
|
- **WHEN** content is queried with featured filter
|
||||||
- **THEN** records with `is_featured` true MUST be retrievable independently of sort order
|
- **THEN** records with `is_featured` true MUST be retrievable independently of sort order
|
||||||
|
|
||||||
|
#### Scenario: Multi-paragraph quotes render as paragraphs
|
||||||
|
|
||||||
|
- **GIVEN** a published testimonial whose quote contains blank-line separated paragraphs
|
||||||
|
- **WHEN** the home testimonials section is rendered
|
||||||
|
- **THEN** each paragraph MUST appear as distinct block text rather than a single collapsed line
|
||||||
|
|
||||||
|
### Requirement: Real wedding testimonials are seeded from authorized source copy
|
||||||
|
|
||||||
|
Content and visual seeders SHALL replace fictional testimonials with the five real wedding testimonials from `depoimentos.md`, preserving author couple names, quote wording, and date/context. Until final publication authorization is confirmed, production deployments MUST keep those records unpublished or gated by explicit admin publish action.
|
||||||
|
|
||||||
|
#### Scenario: Seed loads the five real couples
|
||||||
|
|
||||||
|
- **WHEN** the content seeder runs
|
||||||
|
- **THEN** testimonials for Jeniffer e Maick, Quesia e Jhonata, Milena e Weslley, Raquel e Pedro, and Victoria e Pedro MUST exist with their source quotes and marriage context/dates
|
||||||
|
|
||||||
|
#### Scenario: Fictional demo quotes are removed
|
||||||
|
|
||||||
|
- **WHEN** the content seeder completes
|
||||||
|
- **THEN** previously invented placeholder testimonial authors MUST NOT remain as the published demo set
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Define deterministic visual baselines for public screens and the explicit baseli
|
|||||||
## Requirements
|
## Requirements
|
||||||
### Requirement: Public screens have desktop and mobile visual baselines
|
### Requirement: Public screens have desktop and mobile visual baselines
|
||||||
|
|
||||||
The system SHALL keep versioned screenshot baselines for the public screens available in this phase (SPEC §13.5): Home, Serviços, Portfólio and Detalhe do portfólio, at 1440×1000 desktop and 390×844 mobile. A rendering change that alters those screens MUST fail the browser suite until the diff is reviewed.
|
The system SHALL keep versioned screenshot baselines for the public screens available in this phase (SPEC §13.5): Home, Serviços, Portfólio and Detalhe do portfólio, at 1440×1000 desktop and 390×844 mobile, under the Heritage Editorial identity. A rendering change that alters those screens MUST fail the browser suite until the diff is reviewed and baselines are explicitly updated.
|
||||||
|
|
||||||
#### Scenario: Unintended visual change fails the suite
|
#### Scenario: Unintended visual change fails the suite
|
||||||
|
|
||||||
@@ -19,9 +19,14 @@ The system SHALL keep versioned screenshot baselines for the public screens avai
|
|||||||
- **WHEN** the visual suite runs
|
- **WHEN** the visual suite runs
|
||||||
- **THEN** each covered screen MUST be asserted at 1440×1000 and 390×844
|
- **THEN** each covered screen MUST be asserted at 1440×1000 and 390×844
|
||||||
|
|
||||||
|
#### Scenario: Heritage Editorial identity is captured
|
||||||
|
|
||||||
|
- **WHEN** approved baselines for the home are reviewed after this change
|
||||||
|
- **THEN** they MUST reflect EB Garamond typography, olive/paper palette and sharp-edged editorial layout rather than the previous gold/rounded placeholder look
|
||||||
|
|
||||||
### Requirement: Visual runs are deterministic
|
### Requirement: Visual runs are deterministic
|
||||||
|
|
||||||
Visual runs SHALL be deterministic per SPEC §13.5: fixed Chromium and Linux image, fixed viewport, timezone `America/Fortaleza`, locale `pt-BR`, fonts installed in the image, frozen clock, deterministic seed, animations and transitions disabled, and no dependency on external network.
|
Visual runs SHALL be deterministic per SPEC §13.5: fixed Chromium and Linux image, fixed viewport, timezone `America/Fortaleza`, locale `pt-BR`, self-hosted fonts installed/bundled for the suite, frozen clock, deterministic seed (including real testimonial subset and São Paulo settings), animations and transitions disabled, and no dependency on external network.
|
||||||
|
|
||||||
#### Scenario: Repeated run without code change produces no diff
|
#### Scenario: Repeated run without code change produces no diff
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ Define automated accessibility checks, semantic structure, keyboard operability,
|
|||||||
## Requirements
|
## Requirements
|
||||||
### Requirement: Public routes have no critical or serious accessibility issues
|
### Requirement: Public routes have no critical or serious accessibility issues
|
||||||
|
|
||||||
The system SHALL run automated accessibility checks on the public routes covered by the browser suite (SPEC §6.5, §13.8). A critical or serious issue MUST fail the suite.
|
The system SHALL run automated accessibility checks on the public routes covered by the browser suite (SPEC §6.5, §13.8) after the Heritage Editorial redesign. A critical or serious issue MUST fail the suite.
|
||||||
|
|
||||||
#### Scenario: Critical issue blocks the suite
|
#### Scenario: Critical issue blocks the suite
|
||||||
|
|
||||||
@@ -20,7 +20,7 @@ The system SHALL run automated accessibility checks on the public routes covered
|
|||||||
|
|
||||||
### Requirement: Public pages use accessible semantic structure
|
### Requirement: Public pages use accessible semantic structure
|
||||||
|
|
||||||
Public pages SHALL provide semantic landmarks, exactly one `h1` per page, a coherent heading order, alt text on every content image, and visible focus on interactive elements (SPEC §6.5).
|
Public pages SHALL provide semantic landmarks, exactly one `h1` per page, a coherent heading order, alt text on every content image and brand mark, and visible focus on interactive elements (SPEC §6.5).
|
||||||
|
|
||||||
#### Scenario: Single h1 per page
|
#### Scenario: Single h1 per page
|
||||||
|
|
||||||
@@ -37,9 +37,14 @@ Public pages SHALL provide semantic landmarks, exactly one `h1` per page, a cohe
|
|||||||
- **WHEN** a page renders a cover or gallery image
|
- **WHEN** a page renders a cover or gallery image
|
||||||
- **THEN** the `alt` attribute MUST contain the stored alt text
|
- **THEN** the `alt` attribute MUST contain the stored alt text
|
||||||
|
|
||||||
|
#### Scenario: Brand mark exposes accessible name
|
||||||
|
|
||||||
|
- **WHEN** the public header brand mark is rendered
|
||||||
|
- **THEN** it MUST expose an accessible name identifying Amare Assessoria
|
||||||
|
|
||||||
### Requirement: Public pages are fully keyboard operable
|
### Requirement: Public pages are fully keyboard operable
|
||||||
|
|
||||||
Visitors SHALL be able to reach and activate every interactive element with the keyboard, with a visible focus indicator and a skip link to the main content.
|
Visitors SHALL be able to reach and activate every interactive element with the keyboard, including the mobile navigation disclosure when visible, with a visible focus indicator and a skip link to the main content.
|
||||||
|
|
||||||
#### Scenario: Keyboard reaches the primary CTA
|
#### Scenario: Keyboard reaches the primary CTA
|
||||||
|
|
||||||
@@ -52,9 +57,15 @@ Visitors SHALL be able to reach and activate every interactive element with the
|
|||||||
- **WHEN** a visitor focuses the first element of a public page
|
- **WHEN** a visitor focuses the first element of a public page
|
||||||
- **THEN** a skip link to the main content MUST be available
|
- **THEN** a skip link to the main content MUST be available
|
||||||
|
|
||||||
|
#### Scenario: Mobile menu is keyboard operable
|
||||||
|
|
||||||
|
- **WHEN** the mobile menu button is focused and activated with the keyboard
|
||||||
|
- **THEN** the navigation links MUST become reachable by subsequent Tab stops
|
||||||
|
- **AND** the button MUST expose the correct `aria-expanded` state
|
||||||
|
|
||||||
### Requirement: Reduced motion preference is honored
|
### Requirement: Reduced motion preference is honored
|
||||||
|
|
||||||
The system SHALL suppress non-essential animation and transition when the user agent reports `prefers-reduced-motion: reduce`.
|
The system SHALL suppress non-essential animation and transition when the user agent reports `prefers-reduced-motion: reduce`, including editorial hover scales and menu transitions introduced by the redesign.
|
||||||
|
|
||||||
#### Scenario: Reduced motion disables transitions
|
#### Scenario: Reduced motion disables transitions
|
||||||
|
|
||||||
@@ -64,7 +75,7 @@ The system SHALL suppress non-essential animation and transition when the user a
|
|||||||
|
|
||||||
### Requirement: Public pages emit no console errors
|
### Requirement: Public pages emit no console errors
|
||||||
|
|
||||||
Covered public routes SHALL load without JavaScript console errors in a real browser (SPEC §13.8, §19).
|
Covered public routes SHALL load without JavaScript console errors in a real browser (SPEC §13.8, §19), including pages that load the mobile navigation script.
|
||||||
|
|
||||||
#### Scenario: Console stays clean on covered routes
|
#### Scenario: Console stays clean on covered routes
|
||||||
|
|
||||||
|
|||||||
17
package-lock.json
generated
@@ -7,6 +7,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tailwindcss/vite": "^4.0.0",
|
"@tailwindcss/vite": "^4.0.0",
|
||||||
"concurrently": "^9.0.1",
|
"concurrently": "^9.0.1",
|
||||||
|
"husky": "^9.1.7",
|
||||||
"laravel-vite-plugin": "^3.1",
|
"laravel-vite-plugin": "^3.1",
|
||||||
"playwright": "^1.62.0",
|
"playwright": "^1.62.0",
|
||||||
"tailwindcss": "^4.0.0",
|
"tailwindcss": "^4.0.0",
|
||||||
@@ -890,6 +891,22 @@
|
|||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/husky": {
|
||||||
|
"version": "9.1.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz",
|
||||||
|
"integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"bin": {
|
||||||
|
"husky": "bin.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/typicode"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/is-fullwidth-code-point": {
|
"node_modules/is-fullwidth-code-point": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
||||||
|
|||||||
@@ -4,11 +4,13 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"dev": "vite"
|
"dev": "vite",
|
||||||
|
"prepare": "husky"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@tailwindcss/vite": "^4.0.0",
|
"@tailwindcss/vite": "^4.0.0",
|
||||||
"concurrently": "^9.0.1",
|
"concurrently": "^9.0.1",
|
||||||
|
"husky": "^9.1.7",
|
||||||
"laravel-vite-plugin": "^3.1",
|
"laravel-vite-plugin": "^3.1",
|
||||||
"playwright": "^1.62.0",
|
"playwright": "^1.62.0",
|
||||||
"tailwindcss": "^4.0.0",
|
"tailwindcss": "^4.0.0",
|
||||||
|
|||||||
BIN
public/brand/lockup-on-dark.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
public/brand/lockup-on-dark.webp
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
public/brand/lockup-on-light.png
Normal file
|
After Width: | Height: | Size: 253 KiB |
BIN
public/brand/lockup-on-light.webp
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
public/brand/lockup-source.png
Normal file
|
After Width: | Height: | Size: 95 KiB |
BIN
public/brand/mark-on-dark.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
public/brand/mark-on-dark.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/brand/mark-on-light.png
Normal file
|
After Width: | Height: | Size: 130 KiB |
BIN
public/brand/mark-on-light.webp
Normal file
|
After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 4.2 KiB |
4
public/favicon.svg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||||
|
<rect width="64" height="64" fill="#556B2F"/>
|
||||||
|
<text x="32" y="45" font-family="Georgia, 'Times New Roman', serif" font-size="38" font-weight="600" fill="#FBF9F4" text-anchor="middle">A</text>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 264 B |
@@ -34,21 +34,22 @@
|
|||||||
--radius-full: var(--amare-radius-full);
|
--radius-full: var(--amare-radius-full);
|
||||||
|
|
||||||
--color-amare-bg: var(--amare-color-bg);
|
--color-amare-bg: var(--amare-color-bg);
|
||||||
|
--color-amare-bg-deep: var(--amare-color-bg-deep);
|
||||||
|
--color-amare-bg-archive: var(--amare-color-bg-archive);
|
||||||
--color-amare-bg-muted: var(--amare-color-bg-muted);
|
--color-amare-bg-muted: var(--amare-color-bg-muted);
|
||||||
--color-amare-text: var(--amare-color-text);
|
--color-amare-text: var(--amare-color-text);
|
||||||
|
--color-amare-muted: var(--amare-color-muted);
|
||||||
--color-amare-text-muted: var(--amare-color-text-muted);
|
--color-amare-text-muted: var(--amare-color-text-muted);
|
||||||
--color-amare-border: var(--amare-color-border);
|
--color-amare-border: var(--amare-color-border);
|
||||||
--color-amare-accent: var(--amare-color-accent);
|
--color-amare-accent: var(--amare-color-accent);
|
||||||
|
--color-amare-accent-deep: var(--amare-color-accent-deep);
|
||||||
--color-amare-accent-hover: var(--amare-color-accent-hover);
|
--color-amare-accent-hover: var(--amare-color-accent-hover);
|
||||||
|
--color-amare-sage: var(--amare-color-sage);
|
||||||
--color-amare-accent-text: var(--amare-color-accent-text);
|
--color-amare-accent-text: var(--amare-color-accent-text);
|
||||||
--color-amare-success: var(--amare-color-success);
|
--color-amare-success: var(--amare-color-success);
|
||||||
--color-amare-warning: var(--amare-color-warning);
|
--color-amare-warning: var(--amare-color-warning);
|
||||||
--color-amare-error: var(--amare-color-error);
|
--color-amare-error: var(--amare-color-error);
|
||||||
|
|
||||||
--shadow-amare-sm: var(--amare-shadow-sm);
|
|
||||||
--shadow-amare-md: var(--amare-shadow-md);
|
|
||||||
--shadow-amare-lg: var(--amare-shadow-lg);
|
|
||||||
|
|
||||||
--ease-amare: var(--amare-ease-standard);
|
--ease-amare: var(--amare-ease-standard);
|
||||||
--default-transition-duration: var(--amare-duration-normal);
|
--default-transition-duration: var(--amare-duration-normal);
|
||||||
}
|
}
|
||||||
@@ -57,7 +58,11 @@
|
|||||||
body {
|
body {
|
||||||
background-color: var(--amare-color-bg);
|
background-color: var(--amare-color-bg);
|
||||||
color: var(--amare-color-text);
|
color: var(--amare-color-text);
|
||||||
font-family: var(--amare-font-sans);
|
font-family: var(--amare-font-serif);
|
||||||
|
}
|
||||||
|
|
||||||
|
[id$='-heading'] {
|
||||||
|
scroll-margin-top: 5.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:focus-visible,
|
a:focus-visible,
|
||||||
@@ -78,3 +83,167 @@
|
|||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
padding-inline: var(--amare-container-padding);
|
padding-inline: var(--amare-container-padding);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@utility img-editorial {
|
||||||
|
filter: saturate(0.88) contrast(0.96);
|
||||||
|
}
|
||||||
|
|
||||||
|
@utility honeypot {
|
||||||
|
position: absolute;
|
||||||
|
left: -9999px;
|
||||||
|
width: 1px;
|
||||||
|
height: 1px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
@layer components {
|
||||||
|
.main-nav.is-open {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
|
.main-nav {
|
||||||
|
transition: opacity var(--amare-duration-normal) var(--amare-ease-standard);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body.menu-open {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dossiê vivo — content visible by default; enhance only when opted in */
|
||||||
|
[data-chapter-index] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-progress] {
|
||||||
|
display: none;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-index] a[aria-current="true"] {
|
||||||
|
color: var(--amare-color-accent-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-index] a[aria-current="true"]::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0.35em;
|
||||||
|
bottom: 0.35em;
|
||||||
|
width: 1px;
|
||||||
|
background: var(--amare-color-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-progress] > span {
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
width: var(--chapter-progress, 0%);
|
||||||
|
background: var(--amare-color-accent);
|
||||||
|
transform-origin: left center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1280px) {
|
||||||
|
[data-chapter-index] {
|
||||||
|
display: flex;
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
right: max(1rem, calc((100vw - var(--amare-container-max)) / 2 - 7.5rem));
|
||||||
|
z-index: 30;
|
||||||
|
max-width: 6.5rem;
|
||||||
|
translate: 0 -50%;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-index] a {
|
||||||
|
position: relative;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 2.75rem;
|
||||||
|
padding-left: 0.75rem;
|
||||||
|
font-size: var(--amare-text-xs);
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.12em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--amare-color-muted);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color var(--amare-duration-fast) var(--amare-ease-standard);
|
||||||
|
}
|
||||||
|
|
||||||
|
[data-chapter-index] a:hover {
|
||||||
|
color: var(--amare-color-accent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1279px) {
|
||||||
|
[data-chapter-progress] {
|
||||||
|
display: block;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 45;
|
||||||
|
width: 100%;
|
||||||
|
height: 2px;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-reduced-motion: no-preference) {
|
||||||
|
/* Transform/clip only — never fade text opacity (axe + WCAG mid-transition). */
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"] [data-motion-beat="seal"],
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"] [data-motion-beat="cta"] {
|
||||||
|
transform: translateY(0.5rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"] [data-motion-beat="title"] {
|
||||||
|
transform: translateY(0.4rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"] [data-motion-beat="media"] {
|
||||||
|
clip-path: inset(4% 0 0 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"].is-active [data-motion-beat] {
|
||||||
|
transform: none;
|
||||||
|
clip-path: inset(0 0 0 0);
|
||||||
|
transition:
|
||||||
|
transform var(--amare-duration-slow) var(--amare-ease-arrival),
|
||||||
|
clip-path var(--amare-duration-focal) var(--amare-ease-arrival);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"].is-active [data-motion-beat="seal"] {
|
||||||
|
transition-delay: 0ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"].is-active [data-motion-beat="title"] {
|
||||||
|
transition-delay: 80ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"].is-active [data-motion-beat="media"] {
|
||||||
|
transition-delay: 120ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="dossie-hero"].is-active [data-motion-beat="cta"] {
|
||||||
|
transition-delay: 220ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-reveal]:not(.is-revealed) {
|
||||||
|
transform: translateY(0.5rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-reveal].is-revealed {
|
||||||
|
transform: none;
|
||||||
|
transition: transform var(--amare-duration-slow) var(--amare-ease-arrival);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="page-open"]:not(.is-active) {
|
||||||
|
transform: translateY(0.4rem);
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-motion="enhance"] [data-motion="page-open"].is-active {
|
||||||
|
transform: none;
|
||||||
|
transition: transform var(--amare-duration-normal) var(--amare-ease-arrival);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
:root {
|
:root {
|
||||||
/* Typography */
|
/* Typography — Heritage Editorial single voice */
|
||||||
--amare-font-sans: var(--font-instrument-sans, 'Instrument Sans'), sans-serif;
|
--amare-font-serif: var(--font-eb-garamond, 'EB Garamond'), Garamond, Georgia, serif;
|
||||||
--amare-font-serif: var(--font-instrument-sans, 'Instrument Sans'), sans-serif;
|
--amare-font-sans: var(--amare-font-serif);
|
||||||
|
|
||||||
/* Font scale */
|
/* Font scale */
|
||||||
--amare-text-xs: 0.75rem;
|
--amare-text-xs: 0.75rem;
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
--amare-text-3xl: 1.875rem;
|
--amare-text-3xl: 1.875rem;
|
||||||
--amare-text-4xl: 2.25rem;
|
--amare-text-4xl: 2.25rem;
|
||||||
|
|
||||||
/* Spacing scale */
|
/* Spacing scale (8px rhythm) */
|
||||||
--amare-space-1: 0.25rem;
|
--amare-space-1: 0.25rem;
|
||||||
--amare-space-2: 0.5rem;
|
--amare-space-2: 0.5rem;
|
||||||
--amare-space-3: 0.75rem;
|
--amare-space-3: 0.75rem;
|
||||||
@@ -23,40 +23,42 @@
|
|||||||
--amare-space-12: 3rem;
|
--amare-space-12: 3rem;
|
||||||
--amare-space-16: 4rem;
|
--amare-space-16: 4rem;
|
||||||
|
|
||||||
/* Border radius */
|
/* Border radius — sharp editorial edges */
|
||||||
--amare-radius-sm: 0.375rem;
|
--amare-radius-sm: 0;
|
||||||
--amare-radius-md: 0.5rem;
|
--amare-radius-md: 0;
|
||||||
--amare-radius-lg: 0.75rem;
|
--amare-radius-lg: 0;
|
||||||
--amare-radius-xl: 1rem;
|
--amare-radius-xl: 0;
|
||||||
--amare-radius-full: 9999px;
|
--amare-radius-full: 9999px;
|
||||||
|
|
||||||
/* Container */
|
/* Container */
|
||||||
--amare-container-max: 72rem;
|
--amare-container-max: 1120px;
|
||||||
--amare-container-padding: 1.5rem;
|
--amare-container-padding: 1.5rem;
|
||||||
|
|
||||||
/* Colors — WCAG AA contrast pairs */
|
/* Colors — Heritage Editorial (WCAG AA pairs) */
|
||||||
--amare-color-bg: #fffdf8;
|
--amare-color-bg: #FBF9F4;
|
||||||
--amare-color-bg-muted: #f5f0e8;
|
--amare-color-bg-deep: #F0EEE9;
|
||||||
--amare-color-text: #1a1410;
|
--amare-color-bg-archive: #E4E2DD;
|
||||||
--amare-color-text-muted: #4a4038;
|
--amare-color-bg-muted: var(--amare-color-bg-deep);
|
||||||
--amare-color-border: #d9cfc0;
|
--amare-color-text: #1B1C19;
|
||||||
--amare-color-accent: #8a6500;
|
--amare-color-muted: #5D6155;
|
||||||
--amare-color-accent-hover: #6f5200;
|
--amare-color-text-muted: var(--amare-color-muted);
|
||||||
--amare-color-accent-text: #fffdf8;
|
--amare-color-border: #C5C8B8;
|
||||||
|
--amare-color-accent: #556B2F;
|
||||||
|
--amare-color-accent-deep: #3E5219;
|
||||||
|
--amare-color-accent-hover: var(--amare-color-accent-deep);
|
||||||
|
--amare-color-sage: #8B9D77;
|
||||||
|
--amare-color-accent-text: #FFFFFF;
|
||||||
--amare-color-success: #166534;
|
--amare-color-success: #166534;
|
||||||
--amare-color-warning: #92400e;
|
--amare-color-warning: #92400e;
|
||||||
--amare-color-error: #991b1b;
|
--amare-color-error: #991b1b;
|
||||||
|
|
||||||
/* Shadows */
|
|
||||||
--amare-shadow-sm: 0 1px 2px rgb(26 20 16 / 0.06);
|
|
||||||
--amare-shadow-md: 0 4px 12px rgb(26 20 16 / 0.08);
|
|
||||||
--amare-shadow-lg: 0 12px 32px rgb(26 20 16 / 0.12);
|
|
||||||
|
|
||||||
/* Transitions */
|
/* Transitions */
|
||||||
--amare-duration-fast: 150ms;
|
--amare-duration-fast: 150ms;
|
||||||
--amare-duration-normal: 250ms;
|
--amare-duration-normal: 250ms;
|
||||||
--amare-duration-slow: 400ms;
|
--amare-duration-slow: 400ms;
|
||||||
|
--amare-duration-focal: 720ms;
|
||||||
--amare-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
|
--amare-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
--amare-ease-arrival: cubic-bezier(0.16, 1, 0.3, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
@media (prefers-reduced-motion: reduce) {
|
||||||
@@ -64,6 +66,7 @@
|
|||||||
--amare-duration-fast: 0.01ms;
|
--amare-duration-fast: 0.01ms;
|
||||||
--amare-duration-normal: 0.01ms;
|
--amare-duration-normal: 0.01ms;
|
||||||
--amare-duration-slow: 0.01ms;
|
--amare-duration-slow: 0.01ms;
|
||||||
|
--amare-duration-focal: 0.01ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
*,
|
*,
|
||||||
|
|||||||
@@ -1 +1,65 @@
|
|||||||
//
|
import './motion.js';
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
const menuButton = document.querySelector('[data-menu-button]');
|
||||||
|
const navigation = document.querySelector('[data-main-nav]');
|
||||||
|
|
||||||
|
if (menuButton && navigation) {
|
||||||
|
const isDesktop = () => window.matchMedia('(min-width: 768px)').matches;
|
||||||
|
|
||||||
|
const setOpen = (isOpen, { returnFocus = false } = {}) => {
|
||||||
|
navigation.classList.toggle('is-open', isOpen);
|
||||||
|
navigation.classList.toggle('hidden', !isOpen && !isDesktop());
|
||||||
|
navigation.classList.toggle('flex', isOpen || isDesktop());
|
||||||
|
document.body.classList.toggle('menu-open', isOpen);
|
||||||
|
menuButton.setAttribute('aria-expanded', String(isOpen));
|
||||||
|
menuButton.setAttribute('aria-label', isOpen ? 'Fechar menu' : 'Abrir menu');
|
||||||
|
|
||||||
|
if (!isOpen && returnFocus) {
|
||||||
|
menuButton.focus();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
menuButton.addEventListener('click', () => {
|
||||||
|
const isOpen = menuButton.getAttribute('aria-expanded') !== 'true';
|
||||||
|
setOpen(isOpen);
|
||||||
|
|
||||||
|
if (isOpen) {
|
||||||
|
const firstLink = navigation.querySelector('a');
|
||||||
|
if (firstLink) {
|
||||||
|
firstLink.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
navigation.querySelectorAll('a').forEach((link) => {
|
||||||
|
link.addEventListener('click', () => setOpen(false));
|
||||||
|
});
|
||||||
|
|
||||||
|
navigation.addEventListener('keydown', (event) => {
|
||||||
|
if (event.key === 'Escape') {
|
||||||
|
setOpen(false, { returnFocus: true });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
window.matchMedia('(min-width: 768px)').addEventListener('change', (event) => {
|
||||||
|
setOpen(false);
|
||||||
|
|
||||||
|
if (event.matches) {
|
||||||
|
navigation.classList.remove('hidden');
|
||||||
|
navigation.classList.add('flex');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('form[data-contact-form]').forEach((form) => {
|
||||||
|
form.addEventListener('submit', () => {
|
||||||
|
const button = form.querySelector('[data-submit-button]');
|
||||||
|
|
||||||
|
if (button) {
|
||||||
|
button.disabled = true;
|
||||||
|
button.setAttribute('aria-busy', 'true');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
166
resources/js/motion.js
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
const MOTION_QUERY = '(prefers-reduced-motion: reduce)';
|
||||||
|
|
||||||
|
function prefersReducedMotion() {
|
||||||
|
return window.matchMedia(MOTION_QUERY).matches;
|
||||||
|
}
|
||||||
|
|
||||||
|
function enableEnhancement() {
|
||||||
|
if (prefersReducedMotion()) {
|
||||||
|
document.documentElement.removeAttribute('data-motion');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.documentElement.dataset.motion = 'enhance';
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function activateHero(enhance) {
|
||||||
|
const hero = document.querySelector('[data-motion="dossie-hero"]');
|
||||||
|
if (!hero) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const activate = () => hero.classList.add('is-active');
|
||||||
|
|
||||||
|
if (!enhance) {
|
||||||
|
activate();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
requestAnimationFrame(activate);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function activatePageOpen(enhance) {
|
||||||
|
document.querySelectorAll('[data-motion="page-open"]').forEach((node) => {
|
||||||
|
if (!enhance) {
|
||||||
|
node.classList.add('is-active');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
requestAnimationFrame(() => node.classList.add('is-active'));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function observeReveals(enhance) {
|
||||||
|
const nodes = Array.from(document.querySelectorAll('[data-reveal]'));
|
||||||
|
if (nodes.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!enhance || typeof IntersectionObserver !== 'function') {
|
||||||
|
nodes.forEach((node) => node.classList.add('is-revealed'));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const observer = new IntersectionObserver(
|
||||||
|
(entries) => {
|
||||||
|
entries.forEach((entry) => {
|
||||||
|
if (!entry.isIntersecting) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry.target.classList.add('is-revealed');
|
||||||
|
observer.unobserve(entry.target);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rootMargin: '0px 0px -12% 0px',
|
||||||
|
threshold: 0.2,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
nodes.forEach((node) => observer.observe(node));
|
||||||
|
}
|
||||||
|
|
||||||
|
function setupChapterIndex() {
|
||||||
|
const index = document.querySelector('[data-chapter-index]');
|
||||||
|
const progress = document.querySelector('[data-chapter-progress] span');
|
||||||
|
const chapters = Array.from(document.querySelectorAll('[data-chapter]'));
|
||||||
|
|
||||||
|
if (!index || chapters.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const links = Array.from(index.querySelectorAll('a[href^="#"]'));
|
||||||
|
|
||||||
|
const setActive = (id) => {
|
||||||
|
links.forEach((link) => {
|
||||||
|
const isCurrent = link.getAttribute('href') === `#${id}`;
|
||||||
|
if (isCurrent) {
|
||||||
|
link.setAttribute('aria-current', 'true');
|
||||||
|
} else {
|
||||||
|
link.removeAttribute('aria-current');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateProgress = (ratio) => {
|
||||||
|
if (!progress) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const clamped = Math.min(1, Math.max(0, ratio));
|
||||||
|
progress.style.setProperty('--chapter-progress', `${(clamped * 100).toFixed(2)}%`);
|
||||||
|
};
|
||||||
|
|
||||||
|
const sync = () => {
|
||||||
|
const marker = window.scrollY + Math.min(window.innerHeight * 0.35, 280);
|
||||||
|
let current = chapters[0];
|
||||||
|
|
||||||
|
chapters.forEach((chapter) => {
|
||||||
|
if (chapter.offsetTop <= marker) {
|
||||||
|
current = chapter;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const heading = current.querySelector('[id$="-heading"]') || document.getElementById(`${current.dataset.chapter}-heading`);
|
||||||
|
const headingId = heading?.id
|
||||||
|
|| current.getAttribute('aria-labelledby')
|
||||||
|
|| `${current.dataset.chapter}-heading`;
|
||||||
|
|
||||||
|
setActive(headingId);
|
||||||
|
|
||||||
|
const doc = document.documentElement;
|
||||||
|
const max = Math.max(1, doc.scrollHeight - window.innerHeight);
|
||||||
|
updateProgress(window.scrollY / max);
|
||||||
|
};
|
||||||
|
|
||||||
|
setActive(chapters[0].getAttribute('aria-labelledby') || 'hero-heading');
|
||||||
|
sync();
|
||||||
|
|
||||||
|
window.addEventListener('scroll', sync, { passive: true });
|
||||||
|
window.addEventListener('resize', sync);
|
||||||
|
}
|
||||||
|
|
||||||
|
function bootMotion() {
|
||||||
|
const enhance = enableEnhancement();
|
||||||
|
activateHero(enhance);
|
||||||
|
activatePageOpen(enhance);
|
||||||
|
observeReveals(enhance);
|
||||||
|
setupChapterIndex();
|
||||||
|
|
||||||
|
window.matchMedia(MOTION_QUERY).addEventListener('change', (event) => {
|
||||||
|
if (event.matches) {
|
||||||
|
document.documentElement.removeAttribute('data-motion');
|
||||||
|
document.querySelectorAll('[data-motion="dossie-hero"], [data-motion="page-open"]').forEach((node) => {
|
||||||
|
node.classList.add('is-active');
|
||||||
|
});
|
||||||
|
document.querySelectorAll('[data-reveal]').forEach((node) => {
|
||||||
|
node.classList.add('is-revealed');
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.documentElement.dataset.motion = 'enhance';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (document.readyState === 'loading') {
|
||||||
|
document.addEventListener('DOMContentLoaded', bootMotion, { once: true });
|
||||||
|
} else {
|
||||||
|
bootMotion();
|
||||||
|
}
|
||||||
36
resources/views/components/brand/logo.blade.php
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
@props([
|
||||||
|
'variant' => 'on-light',
|
||||||
|
'mark' => false,
|
||||||
|
'alt' => null,
|
||||||
|
'class' => '',
|
||||||
|
])
|
||||||
|
|
||||||
|
@php
|
||||||
|
$settings = $siteSettings ?? null;
|
||||||
|
$uploadedPath = is_object($settings) ? ($settings->logo_path ?? null) : null;
|
||||||
|
$uploadedAlt = is_object($settings) ? ($settings->logo_alt ?? null) : null;
|
||||||
|
|
||||||
|
$resolvedAlt = $alt
|
||||||
|
?? (filled($uploadedAlt) ? $uploadedAlt : null)
|
||||||
|
?? ((is_object($settings) && filled($settings->brand_name ?? null))
|
||||||
|
? $settings->brand_name
|
||||||
|
: 'Amare Assessoria');
|
||||||
|
|
||||||
|
$variant = $variant === 'on-dark' ? 'on-dark' : 'on-light';
|
||||||
|
$kind = $mark ? 'mark' : 'lockup';
|
||||||
|
$staticSrc = asset("brand/{$kind}-{$variant}.webp");
|
||||||
|
|
||||||
|
$src = filled($uploadedPath)
|
||||||
|
? \Illuminate\Support\Facades\Storage::disk('public')->url($uploadedPath)
|
||||||
|
: $staticSrc;
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<img
|
||||||
|
{{ $attributes->merge([
|
||||||
|
'src' => $src,
|
||||||
|
'alt' => $resolvedAlt,
|
||||||
|
'class' => trim('brand-logo '.$class),
|
||||||
|
'decoding' => 'async',
|
||||||
|
'loading' => 'eager',
|
||||||
|
]) }}
|
||||||
|
/>
|
||||||
@@ -6,7 +6,11 @@
|
|||||||
|
|
||||||
$manifestFile = is_file($manifestPath) ? $manifestPath : $hotManifestPath;
|
$manifestFile = is_file($manifestPath) ? $manifestPath : $hotManifestPath;
|
||||||
$manifest = is_string($manifestFile) && is_file($manifestFile)
|
$manifest = is_string($manifestFile) && is_file($manifestFile)
|
||||||
? json_decode((string) file_get_contents($manifestFile), true)
|
? \Illuminate\Support\Facades\Cache::remember(
|
||||||
|
'fonts-manifest:'.md5($manifestFile.':'.(string) filemtime($manifestFile)),
|
||||||
|
3600,
|
||||||
|
static fn () => json_decode((string) file_get_contents($manifestFile), true) ?: null,
|
||||||
|
)
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
$cssFile = is_array($manifest) ? ($manifest['style']['file'] ?? null) : null;
|
$cssFile = is_array($manifest) ? ($manifest['style']['file'] ?? null) : null;
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
@props([
|
|
||||||
'cases',
|
|
||||||
])
|
|
||||||
|
|
||||||
@if ($cases->isNotEmpty())
|
|
||||||
<section aria-labelledby="cases-heading" class="border-b border-amare-border py-16">
|
|
||||||
<div class="container-amare space-y-8">
|
|
||||||
<div class="max-w-2xl space-y-3">
|
|
||||||
<h2 id="cases-heading" class="text-3xl font-semibold text-amare-text">Casos selecionados</h2>
|
|
||||||
<p class="text-amare-text-muted">Histórias recentes de celebrações conduzidas pela Amare.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grid gap-8">
|
|
||||||
@foreach ($cases as $case)
|
|
||||||
<article class="grid gap-4 border-t border-amare-border pt-6 md:grid-cols-[200px_minmax(0,1fr)]">
|
|
||||||
@if (filled($case->cover_image_path))
|
|
||||||
<x-media.image
|
|
||||||
:path="$case->cover_image_path"
|
|
||||||
:alt="$case->cover_image_alt ?: $case->title"
|
|
||||||
sizes="200px"
|
|
||||||
class="aspect-square w-full object-cover"
|
|
||||||
/>
|
|
||||||
@endif
|
|
||||||
<div class="space-y-2">
|
|
||||||
<h3 class="text-2xl font-semibold text-amare-text">{{ $case->title }}</h3>
|
|
||||||
<p class="text-sm text-amare-text-muted">{{ $case->event_type }}@if($case->city) · {{ $case->city }}@endif</p>
|
|
||||||
<p class="text-amare-text-muted">{{ $case->summary }}</p>
|
|
||||||
<a href="{{ url('/portfolio/'.$case->slug) }}" class="inline-flex text-sm font-semibold text-amare-accent hover:text-amare-accent-hover">
|
|
||||||
Ver caso
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</article>
|
|
||||||
@endforeach
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
@endif
|
|
||||||
15
resources/views/components/home/chapter-index.blade.php
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
@props([
|
||||||
|
'chapters' => [],
|
||||||
|
])
|
||||||
|
|
||||||
|
@if (count($chapters) > 0)
|
||||||
|
<nav data-chapter-index aria-label="Índice de capítulos">
|
||||||
|
@foreach ($chapters as $chapter)
|
||||||
|
<a href="#{{ $chapter['id'] }}">{{ $chapter['label'] }}</a>
|
||||||
|
@endforeach
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div data-chapter-progress aria-hidden="true">
|
||||||
|
<span></span>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
@@ -2,16 +2,17 @@
|
|||||||
'settings',
|
'settings',
|
||||||
])
|
])
|
||||||
|
|
||||||
<section aria-labelledby="final-cta-heading" class="py-16">
|
<section aria-labelledby="final-cta-heading" class="border-t border-amare-border bg-amare-bg-deep py-20" data-chapter="final-cta">
|
||||||
<div class="container-amare rounded-xl border border-amare-border bg-amare-bg-muted px-8 py-12 text-center">
|
<div class="container-amare space-y-6 text-center" data-reveal>
|
||||||
<h2 id="final-cta-heading" class="text-3xl font-semibold text-amare-text">Vamos planejar o seu evento?</h2>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Próximo passo</p>
|
||||||
<p class="mx-auto mt-3 max-w-2xl text-amare-text-muted">
|
<h2 id="final-cta-heading" class="text-3xl font-medium text-amare-text md:text-4xl">Do casamento ao evento corporativo, tudo começa com uma boa conversa.</h2>
|
||||||
Conte um pouco do que você imagina. A próxima conversa começa no briefing.
|
<p class="mx-auto max-w-2xl text-amare-muted">
|
||||||
|
Compartilhe as primeiras informações do seu evento. A Amare retorna para entender o contexto e orientar os próximos passos.
|
||||||
</p>
|
</p>
|
||||||
<div class="mt-8">
|
<div>
|
||||||
<a
|
<a
|
||||||
href="{{ route('contact') }}"
|
href="{{ route('contact') }}"
|
||||||
class="inline-flex items-center rounded-md bg-amare-accent px-5 py-3 text-sm font-semibold text-amare-accent-text transition-colors duration-(--amare-duration-normal) ease-(--amare-ease-standard) hover:bg-amare-accent-hover"
|
class="inline-flex min-h-11 items-center bg-amare-accent px-5 py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent-text transition-colors duration-(--amare-duration-normal) ease-(--amare-ease-standard) hover:bg-amare-accent-deep"
|
||||||
>
|
>
|
||||||
{{ $settings->hero_cta_label }}
|
{{ $settings->hero_cta_label }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -2,14 +2,22 @@
|
|||||||
'settings',
|
'settings',
|
||||||
])
|
])
|
||||||
|
|
||||||
<section aria-labelledby="hero-heading" class="relative overflow-hidden border-b border-amare-border bg-amare-bg">
|
<section
|
||||||
<div class="container-amare grid gap-10 py-16 md:grid-cols-[minmax(0,1.1fr)_minmax(0,0.9fr)] md:items-center md:py-24">
|
aria-labelledby="hero-heading"
|
||||||
<div class="space-y-6">
|
class="border-b border-amare-border bg-amare-bg"
|
||||||
|
data-chapter="hero"
|
||||||
|
data-motion="dossie-hero"
|
||||||
|
>
|
||||||
|
<div class="container-amare grid gap-12 py-20 md:grid-cols-[minmax(0,1.1fr)_minmax(0,0.9fr)] md:items-center md:py-28">
|
||||||
|
<div class="space-y-8">
|
||||||
|
<div data-motion-beat="seal" class="flex items-center gap-4">
|
||||||
|
<x-brand.logo mark variant="on-light" class="h-8 w-auto" alt="" />
|
||||||
@if (filled($settings->hero_eyebrow))
|
@if (filled($settings->hero_eyebrow))
|
||||||
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">{{ $settings->hero_eyebrow }}</p>
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">{{ $settings->hero_eyebrow }}</p>
|
||||||
@endif
|
@endif
|
||||||
|
</div>
|
||||||
|
|
||||||
<h1 id="hero-heading" class="max-w-3xl text-4xl font-semibold tracking-tight text-amare-text md:text-5xl">
|
<h1 id="hero-heading" data-motion-beat="title" class="max-w-3xl text-4xl font-medium leading-none text-amare-text md:text-5xl">
|
||||||
{{ $settings->hero_title }}
|
{{ $settings->hero_title }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
@@ -17,25 +25,39 @@
|
|||||||
<p class="max-w-2xl text-lg text-amare-text-muted">{{ $settings->hero_subtitle }}</p>
|
<p class="max-w-2xl text-lg text-amare-text-muted">{{ $settings->hero_subtitle }}</p>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<div>
|
<div data-motion-beat="cta" class="flex flex-wrap items-center gap-4">
|
||||||
<a
|
<a
|
||||||
href="{{ route('contact') }}"
|
href="{{ route('contact') }}"
|
||||||
data-testid="home-primary-cta"
|
data-testid="home-primary-cta"
|
||||||
class="inline-flex items-center rounded-md bg-amare-accent px-5 py-3 text-sm font-semibold text-amare-accent-text transition-colors duration-(--amare-duration-normal) ease-(--amare-ease-standard) hover:bg-amare-accent-hover focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-3 focus-visible:outline-amare-accent"
|
class="inline-flex min-h-11 items-center bg-amare-accent px-5 py-3 text-sm font-semibold text-amare-accent-text transition-colors duration-(--amare-duration-normal) ease-(--amare-ease-standard) hover:bg-amare-accent-hover"
|
||||||
>
|
>
|
||||||
{{ $settings->hero_cta_label }}
|
{{ $settings->hero_cta_label }}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
@if (filled($settings->hero_secondary_cta_label))
|
||||||
|
<a
|
||||||
|
href="{{ route('portfolio.index') }}"
|
||||||
|
class="inline-flex min-h-11 items-center text-sm font-semibold text-amare-accent transition-colors hover:text-amare-accent-deep"
|
||||||
|
>
|
||||||
|
<span class="border-b border-amare-accent pb-1">{{ $settings->hero_secondary_cta_label }}</span>
|
||||||
|
</a>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@if (filled($settings->hero_note))
|
||||||
|
<p class="max-w-xl text-sm text-amare-text-muted">{{ $settings->hero_note }}</p>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if (filled($settings->default_og_image_path))
|
@if (filled($settings->default_og_image_path))
|
||||||
<div class="min-h-72 overflow-hidden rounded-xl bg-amare-bg-muted">
|
<div data-motion-beat="media" class="min-h-72 overflow-hidden bg-amare-bg-deep">
|
||||||
<x-media.image
|
<x-media.image
|
||||||
:path="$settings->default_og_image_path"
|
:path="$settings->default_og_image_path"
|
||||||
:alt="$settings->default_og_image_alt ?: $settings->brand_name"
|
:alt="$settings->default_og_image_alt ?: $settings->brand_name"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
|
fetchpriority="high"
|
||||||
sizes="(max-width: 768px) 100vw, 40vw"
|
sizes="(max-width: 768px) 100vw, 40vw"
|
||||||
class="h-full w-full object-cover"
|
class="img-editorial h-full w-full object-cover"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|||||||
20
resources/views/components/home/manifesto.blade.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
@props([
|
||||||
|
'settings',
|
||||||
|
])
|
||||||
|
|
||||||
|
@php
|
||||||
|
$title = $settings->manifesto_title ?: 'Sofisticação que também se traduz em organização.';
|
||||||
|
$lead = $settings->manifesto_lead ?: 'Um evento memorável não nasce apenas de uma boa estética. Ele depende de decisões bem conduzidas, fornecedores alinhados e atenção constante ao que realmente importa.';
|
||||||
|
$body = $settings->manifesto_body ?: 'A Amare combina sensibilidade e precisão para criar encontros coerentes com cada cliente, marca e ocasião — sem fórmulas prontas, excessos ou ruído.';
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<section aria-labelledby="manifesto-heading" class="border-b border-amare-border bg-amare-bg-deep py-20" data-chapter="manifesto">
|
||||||
|
<div class="container-amare grid gap-8 md:grid-cols-[minmax(0,0.8fr)_minmax(0,1.2fr)]" data-reveal>
|
||||||
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">Manifesto</p>
|
||||||
|
<div class="space-y-6">
|
||||||
|
<h2 id="manifesto-heading" class="max-w-3xl text-3xl font-medium leading-tight text-amare-text md:text-4xl">{{ $title }}</h2>
|
||||||
|
<p class="max-w-2xl text-xl leading-relaxed text-amare-text">{{ $lead }}</p>
|
||||||
|
<p class="max-w-2xl text-amare-text-muted">{{ $body }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
@@ -2,20 +2,29 @@
|
|||||||
'settings',
|
'settings',
|
||||||
])
|
])
|
||||||
|
|
||||||
<section aria-labelledby="method-heading" class="border-b border-amare-border bg-amare-bg-muted py-16">
|
@php
|
||||||
<div class="container-amare grid gap-8 md:grid-cols-[minmax(0,0.9fr)_minmax(0,1.1fr)] md:items-start">
|
$steps = filled($settings->method_steps) ? $settings->method_steps : \App\Models\SiteSetting::defaultMethodSteps();
|
||||||
<div class="space-y-3">
|
$intro = $settings->method_intro ?: 'Clareza em cada etapa. Tranquilidade durante todo o processo.';
|
||||||
<h2 id="method-heading" class="text-3xl font-semibold text-amare-text">Método de trabalho</h2>
|
@endphp
|
||||||
<p class="text-amare-text-muted">Do briefing ao dia do evento, com clareza e acompanhamento próximo.</p>
|
|
||||||
|
<section aria-labelledby="method-heading" class="border-b border-amare-border bg-amare-bg-archive py-20" data-chapter="method">
|
||||||
|
<div class="container-amare grid gap-10 md:grid-cols-[minmax(0,0.8fr)_minmax(0,1.2fr)] md:items-start">
|
||||||
|
<div class="space-y-3" data-reveal>
|
||||||
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">Método</p>
|
||||||
|
<h2 id="method-heading" class="text-3xl font-medium text-amare-text">Cuidado orientado por processo.</h2>
|
||||||
|
<p class="text-amare-text-muted">{{ $intro }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="space-y-4 text-amare-text-muted">
|
<ol class="grid gap-5 border-t border-amare-border">
|
||||||
<p>{{ $settings->about_summary }}</p>
|
@foreach ($steps as $index => $step)
|
||||||
<ol class="grid gap-3">
|
<li class="grid gap-2 border-b border-amare-border py-5 md:grid-cols-[4rem_minmax(0,1fr)]" data-reveal>
|
||||||
<li>1. Escuta e briefing inicial</li>
|
<span class="text-sm text-amare-accent">{{ str_pad((string) ($index + 1), 2, '0', STR_PAD_LEFT) }}</span>
|
||||||
<li>2. Planejamento e curadoria</li>
|
<div class="space-y-2">
|
||||||
<li>3. Coordenação no dia do evento</li>
|
<h3 class="text-2xl font-medium text-amare-text">{{ $step['title'] ?? '' }}</h3>
|
||||||
|
<p class="text-amare-text-muted">{{ $step['body'] ?? '' }}</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
@endforeach
|
||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
48
resources/views/components/home/portfolio.blade.php
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
@props([
|
||||||
|
'cases',
|
||||||
|
])
|
||||||
|
|
||||||
|
@if ($cases->isNotEmpty())
|
||||||
|
<section aria-labelledby="portfolio-heading" class="border-b border-amare-accent-deep bg-amare-accent-deep py-20 text-amare-accent-text" data-chapter="portfolio">
|
||||||
|
<div class="container-amare space-y-10">
|
||||||
|
<div class="grid gap-4 md:grid-cols-[minmax(0,0.8fr)_minmax(0,1.2fr)]" data-reveal>
|
||||||
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent-text/80">Portfólio</p>
|
||||||
|
<div class="space-y-3">
|
||||||
|
<h2 id="portfolio-heading" class="text-3xl font-medium md:text-4xl">Celebrações que ganham forma com intenção.</h2>
|
||||||
|
<p class="max-w-2xl text-amare-accent-text/80">Recortes de eventos conduzidos com escuta, direção e presença em cada etapa.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="grid gap-10 md:grid-cols-2">
|
||||||
|
@foreach ($cases as $case)
|
||||||
|
<article class="space-y-4 border-t border-amare-accent-text/30 pt-4" data-reveal>
|
||||||
|
@if (filled($case->cover_image_path))
|
||||||
|
<x-media.image
|
||||||
|
:path="$case->cover_image_path"
|
||||||
|
:alt="$case->cover_image_alt ?: $case->title"
|
||||||
|
sizes="(max-width: 768px) 100vw, 50vw"
|
||||||
|
class="img-editorial aspect-[4/3] w-full object-cover"
|
||||||
|
/>
|
||||||
|
@endif
|
||||||
|
<div class="space-y-2">
|
||||||
|
<h3 class="text-2xl font-medium">{{ $case->title }}</h3>
|
||||||
|
<p class="text-amare-accent-text/80">{{ $case->summary }}</p>
|
||||||
|
<a href="{{ route('portfolio.show', $case->slug) }}" class="inline-flex min-h-11 items-center text-sm font-semibold transition-colors hover:text-amare-accent-text">
|
||||||
|
<span class="border-b border-amare-accent-text pb-1">Ver caso</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-col gap-4 border-t border-amare-accent-text/30 pt-5 md:flex-row md:items-end md:justify-between">
|
||||||
|
<p class="max-w-2xl text-sm text-amare-accent-text/75">
|
||||||
|
Imagens demonstrativas enquanto o acervo autorizado da Amare está em organização.
|
||||||
|
</p>
|
||||||
|
<a href="{{ route('portfolio.index') }}" class="inline-flex min-h-11 items-center text-sm font-semibold transition-colors hover:text-amare-accent-text">
|
||||||
|
<span class="border-b border-amare-accent-text pb-1">Conhecer o portfólio</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
@endif
|
||||||
30
resources/views/components/home/positioning.blade.php
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
@props([
|
||||||
|
'settings',
|
||||||
|
])
|
||||||
|
|
||||||
|
@php
|
||||||
|
$summary = $settings->about_summary ?: 'Assessoria para eventos em que cada escolha precisa fazer sentido para quem celebra e para quem recebe.';
|
||||||
|
$principles = filled($settings->principles) ? $settings->principles : \App\Models\SiteSetting::defaultPrinciples();
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<section aria-labelledby="positioning-heading" class="border-b border-amare-border py-20" data-chapter="positioning">
|
||||||
|
<div class="container-amare grid gap-10 md:grid-cols-[minmax(0,0.8fr)_minmax(0,1.2fr)]">
|
||||||
|
<div class="space-y-3" data-reveal>
|
||||||
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">A Amare</p>
|
||||||
|
<h2 id="positioning-heading" class="text-3xl font-medium text-amare-text">Presença que organiza o essencial.</h2>
|
||||||
|
</div>
|
||||||
|
<div class="space-y-8" data-reveal>
|
||||||
|
<p class="max-w-2xl text-xl leading-relaxed text-amare-text">{{ $summary }}</p>
|
||||||
|
<ul class="grid gap-3 border-t border-amare-border">
|
||||||
|
@foreach ($principles as $principle)
|
||||||
|
<li class="border-b border-amare-border py-3 text-amare-text-muted">{{ $principle }}</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
<a href="{{ route('about') }}" class="inline-flex min-h-11 items-center text-sm font-semibold text-amare-accent transition-colors hover:text-amare-accent-deep">
|
||||||
|
<span class="border-b border-amare-accent pb-1">Conhecer a Amare</span>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
@props([
|
|
||||||
'cases',
|
|
||||||
])
|
|
||||||
|
|
||||||
@if ($cases->isNotEmpty())
|
|
||||||
<section aria-labelledby="proof-heading" class="border-b border-amare-border bg-amare-bg-muted py-16">
|
|
||||||
<div class="container-amare space-y-8">
|
|
||||||
<div class="max-w-2xl space-y-3">
|
|
||||||
<h2 id="proof-heading" class="text-3xl font-semibold text-amare-text">Prova visual</h2>
|
|
||||||
<p class="text-amare-text-muted">Eventos em destaque que mostram o cuidado com cada celebração.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
|
|
||||||
@foreach ($cases as $case)
|
|
||||||
<article class="space-y-3">
|
|
||||||
@if (filled($case->cover_image_path))
|
|
||||||
<x-media.image
|
|
||||||
:path="$case->cover_image_path"
|
|
||||||
:alt="$case->cover_image_alt ?: $case->title"
|
|
||||||
sizes="(max-width: 768px) 100vw, 33vw"
|
|
||||||
class="aspect-[4/3] w-full object-cover"
|
|
||||||
/>
|
|
||||||
@endif
|
|
||||||
<h3 class="text-xl font-semibold text-amare-text">{{ $case->title }}</h3>
|
|
||||||
<p class="text-sm text-amare-text-muted">{{ $case->summary }}</p>
|
|
||||||
</article>
|
|
||||||
@endforeach
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
@endif
|
|
||||||
@@ -3,25 +3,27 @@
|
|||||||
])
|
])
|
||||||
|
|
||||||
@if ($services->isNotEmpty())
|
@if ($services->isNotEmpty())
|
||||||
<section aria-labelledby="services-heading" class="border-b border-amare-border py-16">
|
<section aria-labelledby="services-heading" class="border-b border-amare-border py-20" data-chapter="services">
|
||||||
<div class="container-amare space-y-8">
|
<div class="container-amare space-y-10">
|
||||||
<div class="max-w-2xl space-y-3">
|
<div class="max-w-2xl space-y-3" data-reveal>
|
||||||
<h2 id="services-heading" class="text-3xl font-semibold text-amare-text">Serviços</h2>
|
<p class="text-sm font-medium uppercase tracking-[0.18em] text-amare-accent">Atuação</p>
|
||||||
<p class="text-amare-text-muted">Um resumo do que a assessoria pode conduzir com você.</p>
|
<h2 id="services-heading" class="text-3xl font-medium text-amare-text">Serviços</h2>
|
||||||
|
<p class="text-amare-text-muted">Assessoria sob medida para decisões importantes e celebrações bem conduzidas.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
|
<ol class="border-t border-amare-border">
|
||||||
@foreach ($services as $service)
|
@foreach ($services as $index => $service)
|
||||||
<article class="space-y-3 border-t border-amare-border pt-4">
|
<li class="grid gap-3 border-b border-amare-border py-5 md:grid-cols-[4rem_minmax(0,0.8fr)_minmax(0,1.2fr)] md:gap-6" data-reveal>
|
||||||
<h3 class="text-xl font-semibold text-amare-text">{{ $service->title }}</h3>
|
<span class="text-sm text-amare-accent">{{ str_pad((string) ($index + 1), 2, '0', STR_PAD_LEFT) }}</span>
|
||||||
|
<h3 class="text-2xl font-medium text-amare-text">{{ $service->title }}</h3>
|
||||||
<p class="text-amare-text-muted">{{ $service->summary }}</p>
|
<p class="text-amare-text-muted">{{ $service->summary }}</p>
|
||||||
</article>
|
</li>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</ol>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ url('/servicos') }}" class="text-sm font-semibold text-amare-accent transition-colors hover:text-amare-accent-hover">
|
<a href="{{ route('services.index') }}" class="inline-flex min-h-11 items-center text-sm font-semibold text-amare-accent transition-colors hover:text-amare-accent-deep">
|
||||||
Ver todos os serviços
|
<span class="border-b border-amare-accent pb-1">Ver todos os serviços</span>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -3,17 +3,25 @@
|
|||||||
])
|
])
|
||||||
|
|
||||||
@if ($testimonials->isNotEmpty())
|
@if ($testimonials->isNotEmpty())
|
||||||
<section aria-labelledby="testimonials-heading" class="border-b border-amare-border bg-amare-bg-muted py-16">
|
<section aria-labelledby="testimonials-heading" class="border-b border-amare-border bg-amare-bg-muted py-16" data-chapter="testimonials">
|
||||||
<div class="container-amare space-y-8">
|
<div class="container-amare space-y-8">
|
||||||
<div class="max-w-2xl space-y-3">
|
<div class="max-w-2xl space-y-3" data-reveal>
|
||||||
<h2 id="testimonials-heading" class="text-3xl font-semibold text-amare-text">Depoimentos</h2>
|
<h2 id="testimonials-heading" class="text-3xl font-semibold text-amare-text">Depoimentos</h2>
|
||||||
<p class="text-amare-text-muted">Quem celebrou com a Amare conta como foi a experiência.</p>
|
<p class="text-amare-text-muted">Quem celebrou com a Amare conta como foi a experiência.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid gap-6 md:grid-cols-2">
|
<div class="grid gap-6 md:grid-cols-2">
|
||||||
@foreach ($testimonials as $testimonial)
|
@foreach ($testimonials as $testimonial)
|
||||||
<blockquote class="space-y-4 border-t border-amare-border pt-4">
|
@php
|
||||||
<p class="text-lg text-amare-text">“{{ $testimonial->quote }}”</p>
|
$paragraphs = preg_split('/\n\s*\n/', trim((string) $testimonial->quote)) ?: [];
|
||||||
|
$paragraphs = array_values(array_filter(array_map('trim', $paragraphs), fn (string $p): bool => $p !== ''));
|
||||||
|
@endphp
|
||||||
|
<blockquote class="space-y-4 border-t border-amare-border pt-4" data-reveal>
|
||||||
|
<div class="space-y-3 text-lg text-amare-text">
|
||||||
|
@foreach ($paragraphs as $index => $paragraph)
|
||||||
|
<p>@if ($index === 0)“@endif{{ $paragraph }}@if ($index === count($paragraphs) - 1)”@endif</p>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
<footer class="text-sm text-amare-text-muted">
|
<footer class="text-sm text-amare-text-muted">
|
||||||
<cite class="not-italic font-semibold text-amare-text">{{ $testimonial->author_name }}</cite>
|
<cite class="not-italic font-semibold text-amare-text">{{ $testimonial->author_name }}</cite>
|
||||||
@if (filled($testimonial->context))
|
@if (filled($testimonial->context))
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
'alt',
|
'alt',
|
||||||
'sizes' => '(max-width: 768px) 100vw, 960px',
|
'sizes' => '(max-width: 768px) 100vw, 960px',
|
||||||
'loading' => 'lazy',
|
'loading' => 'lazy',
|
||||||
|
'fetchpriority' => null,
|
||||||
'width' => null,
|
'width' => null,
|
||||||
'height' => null,
|
'height' => null,
|
||||||
'disk' => null,
|
'disk' => null,
|
||||||
@@ -42,6 +43,7 @@
|
|||||||
@if ($resolvedWidth) width="{{ $resolvedWidth }}" @endif
|
@if ($resolvedWidth) width="{{ $resolvedWidth }}" @endif
|
||||||
@if ($resolvedHeight) height="{{ $resolvedHeight }}" @endif
|
@if ($resolvedHeight) height="{{ $resolvedHeight }}" @endif
|
||||||
loading="{{ $loadingValue }}"
|
loading="{{ $loadingValue }}"
|
||||||
|
@if ($fetchpriority) fetchpriority="{{ $fetchpriority }}" @endif
|
||||||
@if ($class) class="{{ $class }}" @endif
|
@if ($class) class="{{ $class }}" @endif
|
||||||
{{ $attributes->except(['path', 'alt', 'sizes', 'loading', 'width', 'height', 'disk', 'class']) }}
|
{{ $attributes->except(['path', 'alt', 'sizes', 'loading', 'width', 'height', 'disk', 'class']) }}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -3,12 +3,18 @@
|
|||||||
])
|
])
|
||||||
|
|
||||||
<meta name="description" content="{{ $pageMeta->description }}">
|
<meta name="description" content="{{ $pageMeta->description }}">
|
||||||
<link rel="canonical" href="{{ $pageMeta->canonical }}">
|
@if (filled($pageMeta->canonical))
|
||||||
|
<link rel="canonical" href="{{ $pageMeta->canonical }}">
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<meta property="og:locale" content="pt_BR">
|
||||||
|
<meta property="og:site_name" content="{{ $pageMeta->siteName }}">
|
||||||
<meta property="og:title" content="{{ $pageMeta->title }}">
|
<meta property="og:title" content="{{ $pageMeta->title }}">
|
||||||
<meta property="og:description" content="{{ $pageMeta->description }}">
|
<meta property="og:description" content="{{ $pageMeta->description }}">
|
||||||
<meta property="og:type" content="{{ $pageMeta->ogType }}">
|
<meta property="og:type" content="{{ $pageMeta->ogType }}">
|
||||||
<meta property="og:url" content="{{ $pageMeta->canonical }}">
|
@if (filled($pageMeta->canonical))
|
||||||
|
<meta property="og:url" content="{{ $pageMeta->canonical }}">
|
||||||
|
@endif
|
||||||
@if ($pageMeta->ogImageUrl)
|
@if ($pageMeta->ogImageUrl)
|
||||||
<meta property="og:image" content="{{ $pageMeta->ogImageUrl }}">
|
<meta property="og:image" content="{{ $pageMeta->ogImageUrl }}">
|
||||||
@if ($pageMeta->ogImageAlt)
|
@if ($pageMeta->ogImageAlt)
|
||||||
@@ -16,6 +22,19 @@
|
|||||||
@endif
|
@endif
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@if ($pageMeta->jsonLd)
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<script type="application/ld+json">{!! json_encode($pageMeta->jsonLd, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) !!}</script>
|
<meta name="twitter:title" content="{{ $pageMeta->title }}">
|
||||||
|
<meta name="twitter:description" content="{{ $pageMeta->description }}">
|
||||||
|
@if ($pageMeta->ogImageUrl)
|
||||||
|
<meta name="twitter:image" content="{{ $pageMeta->ogImageUrl }}">
|
||||||
|
@endif
|
||||||
|
|
||||||
|
@if (app()->environment('production'))
|
||||||
|
<meta name="robots" content="{{ $pageMeta->robots }}">
|
||||||
|
@else
|
||||||
|
<meta name="robots" content="noindex, nofollow">
|
||||||
|
@endif
|
||||||
|
|
||||||
|
@if ($pageMeta->jsonLd)
|
||||||
|
<script type="application/ld+json">{!! json_encode($pageMeta->jsonLd, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_APOS | JSON_HEX_QUOT) !!}</script>
|
||||||
@endif
|
@endif
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
Olá, {{ $name }}.
|
||||||
|
|
||||||
|
Recebemos sua mensagem e retornaremos em breve pelo canal informado.
|
||||||
|
|
||||||
|
{{ $brandName }}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="pt-BR">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Recebemos sua mensagem</title>
|
||||||
|
<style>
|
||||||
|
body { margin: 0; padding: 24px; background: #FBF9F4; font-family: Georgia, 'Times New Roman', serif; color: #1B1C19; }
|
||||||
|
.wrap { max-width: 600px; margin: 0 auto; }
|
||||||
|
p { font-size: 15px; line-height: 1.6; }
|
||||||
|
.signature { margin-top: 24px; color: #5D6155; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<p>Olá, {{ $name }}.</p>
|
||||||
|
<p>
|
||||||
|
Recebemos sua mensagem e retornaremos em breve pelo canal informado.
|
||||||
|
</p>
|
||||||
|
<p class="signature">
|
||||||
|
{{ $brandName }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
7
resources/views/emails/contact-briefing-text.blade.php
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Novo briefing de contato
|
||||||
|
|
||||||
|
@foreach ($fields as $label => $value)
|
||||||
|
{{ $label }}: {{ $value ?: '—' }}
|
||||||
|
@endforeach
|
||||||
|
|
||||||
|
Enviado pelo site {{ config('app.name') }}.
|
||||||
33
resources/views/emails/contact-briefing.blade.php
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="pt-BR">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Novo briefing de contato</title>
|
||||||
|
<style>
|
||||||
|
body { margin: 0; padding: 24px; background: #FBF9F4; font-family: Georgia, 'Times New Roman', serif; color: #1B1C19; }
|
||||||
|
.wrap { max-width: 600px; margin: 0 auto; }
|
||||||
|
h1 { font-size: 20px; font-weight: 600; margin: 0 0 16px; }
|
||||||
|
table { width: 100%; border-collapse: collapse; }
|
||||||
|
th, td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid #C5C8B8; font-size: 14px; }
|
||||||
|
th { width: 40%; font-weight: 600; color: #556B2F; }
|
||||||
|
.footer { margin-top: 16px; font-size: 12px; color: #5D6155; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<h1>Novo briefing de contato</h1>
|
||||||
|
<table>
|
||||||
|
@foreach ($fields as $label => $value)
|
||||||
|
<tr>
|
||||||
|
<th scope="row">{{ $label }}</th>
|
||||||
|
<td>{{ $value ?: '—' }}</td>
|
||||||
|
</tr>
|
||||||
|
@endforeach
|
||||||
|
</table>
|
||||||
|
<p class="footer">
|
||||||
|
Enviado pelo site {{ config('app.name') }}.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -1,12 +1,26 @@
|
|||||||
|
@php
|
||||||
|
try {
|
||||||
|
$errorSettings = \App\Models\SiteSetting::instance();
|
||||||
|
$pageMeta = \App\Application\Data\PageMeta::forErrorPage($errorSettings, 404);
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
$pageMeta = new \App\Application\Data\PageMeta(
|
||||||
|
title: 'Página não encontrada - Amare Assessoria',
|
||||||
|
description: 'A página que você procura não existe ou foi movida.',
|
||||||
|
canonical: '',
|
||||||
|
robots: 'noindex, nofollow',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
|
|
||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare max-w-2xl space-y-6 py-8 text-center">
|
<div class="container-amare max-w-2xl space-y-6 py-20 text-center">
|
||||||
<p class="text-sm uppercase tracking-[0.18em] text-amare-accent">Erro 404</p>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Erro 404</p>
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Página não encontrada</h1>
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text">Página não encontrada</h1>
|
||||||
<p class="text-amare-text-muted">O endereço que você tentou abrir não existe ou foi movido.</p>
|
<p class="text-amare-muted">O endereço que você tentou abrir não existe ou foi movido.</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ route('home') }}" class="inline-flex rounded-md bg-amare-accent px-5 py-3 text-sm font-semibold text-amare-accent-text hover:bg-amare-accent-hover">
|
<a href="{{ route('home') }}" class="inline-flex min-h-11 items-center bg-amare-accent px-5 py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent-text transition-colors hover:bg-amare-accent-deep">
|
||||||
Voltar para a home
|
Voltar para a home
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -1,12 +1,26 @@
|
|||||||
|
@php
|
||||||
|
try {
|
||||||
|
$errorSettings = \App\Models\SiteSetting::instance();
|
||||||
|
$pageMeta = \App\Application\Data\PageMeta::forErrorPage($errorSettings, 500);
|
||||||
|
} catch (\Throwable $e) {
|
||||||
|
$pageMeta = new \App\Application\Data\PageMeta(
|
||||||
|
title: 'Algo deu errado - Amare Assessoria',
|
||||||
|
description: 'Não foi possível concluir o pedido. Tente novamente em instantes.',
|
||||||
|
canonical: '',
|
||||||
|
robots: 'noindex, nofollow',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@endphp
|
||||||
|
|
||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare max-w-2xl space-y-6 py-8 text-center">
|
<div class="container-amare max-w-2xl space-y-6 py-20 text-center">
|
||||||
<p class="text-sm uppercase tracking-[0.18em] text-amare-accent">Erro 500</p>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Erro 500</p>
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Algo deu errado</h1>
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text">Algo deu errado</h1>
|
||||||
<p class="text-amare-text-muted">Não foi possível concluir o pedido agora. Tente novamente em instantes.</p>
|
<p class="text-amare-muted">Não foi possível concluir o pedido agora. Tente novamente em instantes.</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ route('home') }}" class="inline-flex rounded-md bg-amare-accent px-5 py-3 text-sm font-semibold text-amare-accent-text hover:bg-amare-accent-hover">
|
<a href="{{ route('home') }}" class="inline-flex min-h-11 items-center bg-amare-accent px-5 py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent-text transition-colors hover:bg-amare-accent-deep">
|
||||||
Voltar para a home
|
Voltar para a home
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -4,68 +4,135 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="color-scheme" content="light">
|
<meta name="color-scheme" content="light">
|
||||||
|
<meta name="theme-color" content="#FBF9F4">
|
||||||
|
<link rel="icon" href="{{ asset('favicon.svg') }}" type="image/svg+xml">
|
||||||
|
|
||||||
<title>{{ $pageMeta->title }}</title>
|
<title>{{ $pageMeta->title }}</title>
|
||||||
<x-seo.meta :page-meta="$pageMeta" />
|
<x-seo.meta :page-meta="$pageMeta" />
|
||||||
|
|
||||||
<x-fonts />
|
<x-fonts />
|
||||||
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
.main-nav {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.main-nav {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-button {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</noscript>
|
||||||
</head>
|
</head>
|
||||||
<body class="min-h-screen antialiased">
|
<body class="min-h-screen bg-amare-bg font-serif text-amare-text antialiased">
|
||||||
<a href="#conteudo" class="sr-only focus:not-sr-only focus:absolute focus:left-4 focus:top-4 focus:z-50 focus:rounded-md focus:bg-amare-accent focus:px-4 focus:py-2 focus:text-amare-accent-text">
|
<a href="#conteudo" class="sr-only focus:not-sr-only focus:absolute focus:left-4 focus:top-4 focus:z-50 focus:bg-amare-accent focus:px-4 focus:py-2 focus:text-amare-accent-text">
|
||||||
Ir para o conteúdo
|
Ir para o conteúdo
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<header class="border-b border-amare-border bg-amare-bg">
|
<header class="site-header sticky top-0 z-40 border-b border-amare-border/80 bg-amare-bg/90 backdrop-blur-sm">
|
||||||
<div class="container-amare flex items-center justify-between gap-6 py-4">
|
<div class="container-amare grid grid-cols-[auto_1fr_auto] items-center gap-4 py-4 md:grid-cols-[1fr_auto_1fr]">
|
||||||
<a href="{{ url('/') }}" class="text-lg font-semibold text-amare-text transition-colors duration-(--amare-duration-normal) ease-(--amare-ease-standard) hover:text-amare-accent">
|
<nav id="main-nav" class="main-nav order-3 col-span-3 hidden flex-col gap-4 border-t border-amare-border pt-4 md:order-1 md:col-span-1 md:flex md:flex-row md:items-center md:gap-1 md:border-0 md:pt-0" aria-label="Principal" data-main-nav>
|
||||||
{{ $siteSettings->brand_name }}
|
<a href="{{ route('home') }}" class="inline-flex items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-muted transition-colors hover:text-amare-accent md:px-2">Início</a>
|
||||||
|
<a href="{{ route('services.index') }}" class="inline-flex items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-muted transition-colors hover:text-amare-accent md:px-2">Serviços</a>
|
||||||
|
<a href="{{ route('portfolio.index') }}" class="inline-flex items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-muted transition-colors hover:text-amare-accent md:px-2">Portfólio</a>
|
||||||
|
<a href="{{ route('about') }}" class="inline-flex items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-muted transition-colors hover:text-amare-accent md:px-2">Amare</a>
|
||||||
|
<a href="{{ route('contact') }}" class="inline-flex items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-muted transition-colors hover:text-amare-accent md:hidden">Solicitar proposta</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<a href="{{ route('home') }}" class="order-1 justify-self-start md:order-2 md:justify-self-center" aria-label="{{ $siteSettings->brand_name }} — página inicial">
|
||||||
|
<x-brand.logo variant="on-light" class="h-10 w-auto md:h-12" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<nav aria-label="Principal" class="flex flex-wrap items-center gap-4 text-sm text-amare-text-muted">
|
<div class="order-2 flex items-center justify-end gap-3 md:order-3">
|
||||||
<a href="{{ route('home') }}" class="transition-colors hover:text-amare-accent">Início</a>
|
<a href="{{ route('contact') }}" class="hidden items-center py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent transition-colors hover:text-amare-accent-deep md:inline-flex">
|
||||||
<a href="{{ route('services.index') }}" class="transition-colors hover:text-amare-accent">Serviços</a>
|
Solicitar proposta
|
||||||
<a href="{{ route('portfolio.index') }}" class="transition-colors hover:text-amare-accent">Portfólio</a>
|
</a>
|
||||||
<a href="{{ route('about') }}" class="transition-colors hover:text-amare-accent">Sobre</a>
|
|
||||||
<a href="{{ route('contact') }}" class="transition-colors hover:text-amare-accent">Contato</a>
|
<button
|
||||||
</nav>
|
type="button"
|
||||||
|
class="menu-button inline-flex h-11 w-11 items-center justify-center border border-amare-border text-amare-text md:hidden"
|
||||||
|
aria-label="Abrir menu"
|
||||||
|
aria-controls="main-nav"
|
||||||
|
aria-expanded="false"
|
||||||
|
data-menu-button
|
||||||
|
>
|
||||||
|
<span class="sr-only">Menu</span>
|
||||||
|
<span aria-hidden="true" class="flex w-4 flex-col gap-1">
|
||||||
|
<span class="block h-px w-full bg-current"></span>
|
||||||
|
<span class="block h-px w-full bg-current"></span>
|
||||||
|
<span class="block h-px w-full bg-current"></span>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main id="conteudo" class="py-12">
|
<main id="conteudo">
|
||||||
@yield('content')
|
@yield('content')
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="border-t border-amare-border bg-amare-bg-muted">
|
<footer class="border-t border-amare-border bg-amare-bg-deep">
|
||||||
<div class="container-amare flex flex-col gap-4 py-8 text-sm text-amare-text-muted md:flex-row md:items-start md:justify-between">
|
<div class="container-amare grid gap-10 py-12 md:grid-cols-[minmax(0,1.4fr)_repeat(2,minmax(0,1fr))]">
|
||||||
<div class="space-y-2">
|
<div class="space-y-4">
|
||||||
<p class="font-medium text-amare-text">{{ $siteSettings->brand_name }}</p>
|
<x-brand.logo variant="on-light" class="h-12 w-auto" />
|
||||||
|
<p class="max-w-md text-amare-muted">
|
||||||
|
{{ $siteSettings->about_summary ?: 'Assessoria boutique em São Paulo - SP.' }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-sm">
|
||||||
|
<h2 class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Navegação</h2>
|
||||||
|
<ul class="mt-3 space-y-3">
|
||||||
|
<li><a href="{{ route('services.index') }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">Serviços</a></li>
|
||||||
|
<li><a href="{{ route('portfolio.index') }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">Portfólio</a></li>
|
||||||
|
<li><a href="{{ route('about') }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">A Amare</a></li>
|
||||||
|
<li><a href="{{ route('contact') }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">Contato</a></li>
|
||||||
|
<li><a href="{{ route('privacy') }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">Política de privacidade</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text-sm">
|
||||||
|
<h2 class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Contato</h2>
|
||||||
|
<address class="mt-3 space-y-3 not-italic">
|
||||||
|
@if ($siteSettings->city)
|
||||||
|
<p class="text-amare-muted">{{ $siteSettings->city }}</p>
|
||||||
|
@endif
|
||||||
@if ($siteSettings->email)
|
@if ($siteSettings->email)
|
||||||
<p>
|
<p>
|
||||||
<a href="mailto:{{ $siteSettings->email }}" class="transition-colors hover:text-amare-accent">{{ $siteSettings->email }}</a>
|
<a href="mailto:{{ $siteSettings->email }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">{{ $siteSettings->email }}</a>
|
||||||
</p>
|
</p>
|
||||||
@endif
|
@endif
|
||||||
@if ($siteSettings->phone)
|
@if ($siteSettings->phone)
|
||||||
<p>{{ $siteSettings->phone }}</p>
|
<p>
|
||||||
|
<a href="tel:{{ preg_replace('/\D/', '', (string) $siteSettings->phone) }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent">{{ $siteSettings->phone }}</a>
|
||||||
|
</p>
|
||||||
@endif
|
@endif
|
||||||
@if ($siteSettings->city)
|
|
||||||
<p>{{ $siteSettings->city }}</p>
|
|
||||||
@endif
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="space-y-2">
|
|
||||||
<p class="font-medium text-amare-text">Links</p>
|
|
||||||
<p><a href="{{ route('privacy') }}" class="transition-colors hover:text-amare-accent">Política de privacidade</a></p>
|
|
||||||
@foreach ($siteSettings->social_links ?? [] as $network => $url)
|
@foreach ($siteSettings->social_links ?? [] as $network => $url)
|
||||||
@if (filled($url))
|
@if (filled($url))
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ $url }}" class="transition-colors hover:text-amare-accent" rel="noopener noreferrer" target="_blank">{{ ucfirst((string) $network) }}</a>
|
<a href="{{ $url }}" class="inline-flex min-h-11 items-center text-amare-muted transition-colors hover:text-amare-accent" rel="noopener noreferrer" target="_blank">{{ ucfirst((string) $network) }}</a>
|
||||||
</p>
|
</p>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
|
</address>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="border-t border-amare-border">
|
||||||
|
<div class="container-amare flex flex-col gap-2 py-6 text-sm text-amare-muted md:flex-row md:items-center md:justify-between">
|
||||||
<p>© {{ now()->year }} {{ $siteSettings->brand_name }}. Todos os direitos reservados.</p>
|
<p>© {{ now()->year }} {{ $siteSettings->brand_name }}. Todos os direitos reservados.</p>
|
||||||
|
<p>
|
||||||
|
<a href="{{ route('privacy') }}" class="inline-flex min-h-11 items-center transition-colors hover:text-amare-accent">Política de privacidade</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,33 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare max-w-3xl space-y-6">
|
@php
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Sobre</h1>
|
$principles = filled($siteSettings->principles)
|
||||||
<p class="text-lg text-amare-text-muted">{{ $siteSettings->about_summary }}</p>
|
? $siteSettings->principles
|
||||||
<p class="text-amare-text-muted">
|
: \App\Models\SiteSetting::defaultPrinciples();
|
||||||
A {{ $siteSettings->brand_name }} atua em {{ $siteSettings->city }} com foco em planejamento completo,
|
$city = $siteSettings->city ?: 'São Paulo - SP';
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<div class="flex min-h-[calc(100dvh-14rem)] flex-col border-b border-amare-border bg-amare-bg" data-motion="page-open">
|
||||||
|
<div class="container-amare grid flex-1 content-start gap-12 py-16 md:grid-cols-[minmax(0,1.1fr)_minmax(0,0.9fr)] md:py-24">
|
||||||
|
<div class="space-y-6">
|
||||||
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">A Amare</p>
|
||||||
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text md:text-5xl">Humana no cuidado. Precisa na entrega.</h1>
|
||||||
|
<p class="text-lg text-amare-muted">{{ $siteSettings->about_summary }}</p>
|
||||||
|
<p class="text-amare-muted">
|
||||||
|
A {{ $siteSettings->brand_name }} atua em {{ $city }} com foco em planejamento completo,
|
||||||
presença no dia do evento e uma condução serena do início ao fim.
|
presença no dia do evento e uma condução serena do início ao fim.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<ul class="space-y-4 border-t border-amare-border pt-6" aria-label="Princípios da Amare">
|
||||||
|
@foreach ($principles as $index => $principle)
|
||||||
|
<li class="grid grid-cols-[3rem_minmax(0,1fr)] gap-4 border-b border-amare-border pb-4 text-amare-text">
|
||||||
|
<span class="text-sm font-semibold uppercase tracking-[0.14em] text-amare-accent">{{ str_pad((string) ($index + 1), 2, '0', STR_PAD_LEFT) }}</span>
|
||||||
|
<span>{{ $principle }}</span>
|
||||||
|
</li>
|
||||||
|
@endforeach
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -1,28 +1,277 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare space-y-6">
|
<section class="flex min-h-[calc(100dvh-14rem)] flex-col border-b border-amare-border bg-amare-bg">
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Contato</h1>
|
<div class="container-amare grid flex-1 content-start gap-12 py-16 md:grid-cols-[minmax(0,1.2fr)_minmax(0,0.8fr)] md:py-24">
|
||||||
<p class="max-w-2xl text-amare-text-muted">
|
<div class="space-y-6">
|
||||||
Em breve você poderá enviar um briefing por aqui. Enquanto isso, fale conosco pelos canais abaixo.
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Vamos conversar</p>
|
||||||
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text md:text-5xl">Todo grande encontro começa com uma boa conversa.</h1>
|
||||||
|
<p class="max-w-2xl text-lg text-amare-muted">
|
||||||
|
Conte sobre o seu evento no briefing abaixo. Retornaremos com uma proposta sob medida e sem compromisso.
|
||||||
</p>
|
</p>
|
||||||
<div class="space-y-2 text-amare-text-muted">
|
</div>
|
||||||
|
|
||||||
|
<div class="space-y-4 border-t border-amare-border pt-6 text-amare-muted md:border-t-0 md:border-l md:pt-0 md:pl-10">
|
||||||
|
<p>{{ $siteSettings->city ?: 'São Paulo - SP' }}</p>
|
||||||
@if ($siteSettings->email)
|
@if ($siteSettings->email)
|
||||||
<p><a href="mailto:{{ $siteSettings->email }}" class="text-amare-accent hover:text-amare-accent-hover">{{ $siteSettings->email }}</a></p>
|
<p>
|
||||||
|
<a href="mailto:{{ $siteSettings->email }}" class="inline-flex min-h-11 items-center text-amare-accent transition-colors hover:text-amare-accent-deep">{{ $siteSettings->email }}</a>
|
||||||
|
</p>
|
||||||
@endif
|
@endif
|
||||||
@if ($siteSettings->phone)
|
@if ($siteSettings->phone)
|
||||||
<p>{{ $siteSettings->phone }}</p>
|
<p>
|
||||||
@endif
|
<a href="tel:{{ preg_replace('/\D/', '', (string) $siteSettings->phone) }}" class="inline-flex min-h-11 items-center text-amare-accent transition-colors hover:text-amare-accent-deep">{{ $siteSettings->phone }}</a>
|
||||||
@if ($siteSettings->city)
|
</p>
|
||||||
<p>{{ $siteSettings->city }}</p>
|
|
||||||
@endif
|
@endif
|
||||||
@foreach ($siteSettings->social_links ?? [] as $network => $url)
|
@foreach ($siteSettings->social_links ?? [] as $network => $url)
|
||||||
@if (filled($url))
|
@if (filled($url))
|
||||||
<p>
|
<p>
|
||||||
<a href="{{ $url }}" class="text-amare-accent hover:text-amare-accent-hover" rel="noopener noreferrer" target="_blank">{{ ucfirst((string) $network) }}</a>
|
<a href="{{ $url }}" class="inline-flex min-h-11 items-center text-amare-accent transition-colors hover:text-amare-accent-deep" rel="noopener noreferrer" target="_blank">{{ ucfirst((string) $network) }}</a>
|
||||||
</p>
|
</p>
|
||||||
@endif
|
@endif
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="border-b border-amare-border bg-amare-bg" aria-labelledby="briefing-heading">
|
||||||
|
<div class="container-amare py-16 md:py-24">
|
||||||
|
<h2 id="briefing-heading" class="text-2xl font-medium tracking-tight text-amare-text md:text-3xl">Briefing de contato</h2>
|
||||||
|
<p class="mt-2 max-w-2xl text-amare-muted">
|
||||||
|
Preencha os campos abaixo. As informações obrigatórias estão marcadas com asterisco (*).
|
||||||
|
</p>
|
||||||
|
|
||||||
|
@if (session('status') === 'briefing-sent')
|
||||||
|
<div role="status" class="mt-8 border border-amare-border bg-amare-bg-deep px-6 py-5">
|
||||||
|
<p class="font-semibold text-amare-text">Mensagem enviada.</p>
|
||||||
|
<p class="mt-1 text-amare-muted">Recebemos seu briefing e retornaremos em breve pelo canal informado.</p>
|
||||||
|
</div>
|
||||||
|
@else
|
||||||
|
<form
|
||||||
|
method="POST"
|
||||||
|
action="{{ route('contact.store') }}"
|
||||||
|
class="mt-10 max-w-3xl space-y-10"
|
||||||
|
data-contact-form
|
||||||
|
>
|
||||||
|
@csrf
|
||||||
|
|
||||||
|
<div class="honeypot" aria-hidden="true">
|
||||||
|
<label for="empresa">Não preencha este campo</label>
|
||||||
|
<input type="text" id="empresa" name="empresa" tabindex="-1" autocomplete="off">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@if ($errors->any())
|
||||||
|
<div role="alert" class="border border-amare-error/40 bg-amare-error/5 px-6 py-5">
|
||||||
|
<p class="font-semibold text-amare-error">Não foi possível enviar.</p>
|
||||||
|
<p class="mt-1 text-sm text-amare-muted">Revise os campos destacados abaixo e tente novamente.</p>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<div class="grid gap-8 sm:grid-cols-2">
|
||||||
|
<div>
|
||||||
|
<label for="nome" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Nome completo *</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="nome"
|
||||||
|
name="nome"
|
||||||
|
value="{{ old('nome') }}"
|
||||||
|
required
|
||||||
|
autocomplete="name"
|
||||||
|
maxlength="120"
|
||||||
|
placeholder="Seu nome"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('nome') border-amare-error @enderror"
|
||||||
|
@error('nome') aria-invalid="true" aria-describedby="nome-error" @enderror
|
||||||
|
>
|
||||||
|
@error('nome')
|
||||||
|
<p id="nome-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="email" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">E-mail *</label>
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
id="email"
|
||||||
|
name="email"
|
||||||
|
value="{{ old('email') }}"
|
||||||
|
required
|
||||||
|
autocomplete="email"
|
||||||
|
maxlength="254"
|
||||||
|
placeholder="voce@email.com"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('email') border-amare-error @enderror"
|
||||||
|
@error('email') aria-invalid="true" aria-describedby="email-error" @enderror
|
||||||
|
>
|
||||||
|
@error('email')
|
||||||
|
<p id="email-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="telefone" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Telefone/WhatsApp *</label>
|
||||||
|
<input
|
||||||
|
type="tel"
|
||||||
|
id="telefone"
|
||||||
|
name="telefone"
|
||||||
|
value="{{ old('telefone') }}"
|
||||||
|
required
|
||||||
|
autocomplete="tel"
|
||||||
|
maxlength="40"
|
||||||
|
placeholder="(11) 90000-0000"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('telefone') border-amare-error @enderror"
|
||||||
|
@error('telefone') aria-invalid="true" aria-describedby="telefone-error" @enderror
|
||||||
|
>
|
||||||
|
@error('telefone')
|
||||||
|
<p id="telefone-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="tipo_evento" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Tipo de evento *</label>
|
||||||
|
<select
|
||||||
|
id="tipo_evento"
|
||||||
|
name="tipo_evento"
|
||||||
|
required
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors focus:border-amare-accent focus:outline-none @error('tipo_evento') border-amare-error @enderror"
|
||||||
|
@error('tipo_evento') aria-invalid="true" aria-describedby="tipo_evento-error" @enderror
|
||||||
|
>
|
||||||
|
<option value="" selected disabled>Selecione...</option>
|
||||||
|
<option value="Casamento" @selected(old('tipo_evento') === 'Casamento')>Casamento</option>
|
||||||
|
<option value="Evento corporativo" @selected(old('tipo_evento') === 'Evento corporativo')>Evento corporativo</option>
|
||||||
|
<option value="Celebração intimista" @selected(old('tipo_evento') === 'Celebração intimista')>Celebração intimista</option>
|
||||||
|
<option value="Outro" @selected(old('tipo_evento') === 'Outro')>Outro tipo de evento</option>
|
||||||
|
</select>
|
||||||
|
@error('tipo_evento')
|
||||||
|
<p id="tipo_evento-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="data_periodo" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Data ou período desejado</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="data_periodo"
|
||||||
|
name="data_periodo"
|
||||||
|
value="{{ old('data_periodo') }}"
|
||||||
|
maxlength="80"
|
||||||
|
placeholder="Ex.: novembro de 2027"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('data_periodo') border-amare-error @enderror"
|
||||||
|
@error('data_periodo') aria-invalid="true" aria-describedby="data_periodo-error" @enderror
|
||||||
|
>
|
||||||
|
@error('data_periodo')
|
||||||
|
<p id="data_periodo-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="cidade" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Cidade do evento *</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="cidade"
|
||||||
|
name="cidade"
|
||||||
|
value="{{ old('cidade') }}"
|
||||||
|
required
|
||||||
|
maxlength="80"
|
||||||
|
placeholder="Ex.: São Paulo"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('cidade') border-amare-error @enderror"
|
||||||
|
@error('cidade') aria-invalid="true" aria-describedby="cidade-error" @enderror
|
||||||
|
>
|
||||||
|
@error('cidade')
|
||||||
|
<p id="cidade-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="convidados" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Número estimado de convidados</label>
|
||||||
|
<input
|
||||||
|
type="number"
|
||||||
|
id="convidados"
|
||||||
|
name="convidados"
|
||||||
|
value="{{ old('convidados') }}"
|
||||||
|
min="1"
|
||||||
|
max="100000"
|
||||||
|
inputmode="numeric"
|
||||||
|
autocomplete="off"
|
||||||
|
placeholder="Ex.: 120"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('convidados') border-amare-error @enderror"
|
||||||
|
@error('convidados') aria-invalid="true" aria-describedby="convidados-error" @enderror
|
||||||
|
>
|
||||||
|
@error('convidados')
|
||||||
|
<p id="convidados-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="servico_interesse" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Serviço de interesse</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="servico_interesse"
|
||||||
|
name="servico_interesse"
|
||||||
|
value="{{ old('servico_interesse') }}"
|
||||||
|
maxlength="120"
|
||||||
|
placeholder="Ex.: planejamento completo"
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('servico_interesse') border-amare-error @enderror"
|
||||||
|
@error('servico_interesse') aria-invalid="true" aria-describedby="servico_interesse-error" @enderror
|
||||||
|
>
|
||||||
|
@error('servico_interesse')
|
||||||
|
<p id="servico_interesse-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="mensagem" class="mb-2 block text-xs font-semibold uppercase tracking-[0.14em] text-amare-text">Mensagem / principal preocupação *</label>
|
||||||
|
<textarea
|
||||||
|
id="mensagem"
|
||||||
|
name="mensagem"
|
||||||
|
required
|
||||||
|
rows="6"
|
||||||
|
maxlength="3000"
|
||||||
|
placeholder="Conte sobre o seu evento, expectativas e principais preocupações."
|
||||||
|
class="w-full border-0 border-b border-amare-border bg-transparent py-3 text-amare-text transition-colors placeholder:text-amare-muted/60 focus:border-amare-accent focus:outline-none @error('mensagem') border-amare-error @enderror"
|
||||||
|
@error('mensagem') aria-invalid="true" aria-describedby="mensagem-error" @enderror
|
||||||
|
>{{ old('mensagem') }}</textarea>
|
||||||
|
@error('mensagem')
|
||||||
|
<p id="mensagem-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="privacidade" class="flex items-start gap-3 py-2">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
id="privacidade"
|
||||||
|
name="privacidade"
|
||||||
|
value="1"
|
||||||
|
required
|
||||||
|
@checked(old('privacidade'))
|
||||||
|
class="mt-1 h-5 w-5 shrink-0 accent-amare-accent"
|
||||||
|
@error('privacidade') aria-invalid="true" aria-describedby="privacidade-error" @enderror
|
||||||
|
>
|
||||||
|
<span class="text-sm text-amare-muted">
|
||||||
|
Li e aceito a
|
||||||
|
<a href="{{ route('privacy') }}" class="text-amare-accent underline underline-offset-2 transition-colors hover:text-amare-accent-deep">política de privacidade</a>
|
||||||
|
e autorizo o tratamento dos meus dados para fins de atendimento.*
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
@error('privacidade')
|
||||||
|
<p id="privacidade-error" class="mt-2 text-sm text-amare-error">{{ $message }}</p>
|
||||||
|
@enderror
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex flex-col items-start gap-4">
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
data-submit-button
|
||||||
|
class="inline-flex min-h-[44px] items-center justify-center bg-amare-accent px-8 py-3 text-sm font-semibold uppercase tracking-[0.12em] text-amare-accent-text transition-colors hover:bg-amare-accent-deep"
|
||||||
|
>
|
||||||
|
Enviar briefing
|
||||||
|
</button>
|
||||||
|
<p class="text-sm text-amare-muted">
|
||||||
|
* Campos obrigatórios. Seus dados são usados apenas para responder à sua solicitação.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -1,11 +1,38 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
@php
|
||||||
|
$chapters = [
|
||||||
|
['id' => 'hero-heading', 'label' => 'Capa'],
|
||||||
|
['id' => 'manifesto-heading', 'label' => 'Manifesto'],
|
||||||
|
];
|
||||||
|
|
||||||
|
if ($content->featuredServices->isNotEmpty()) {
|
||||||
|
$chapters[] = ['id' => 'services-heading', 'label' => 'Serviços'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($content->featuredCases->isNotEmpty()) {
|
||||||
|
$chapters[] = ['id' => 'portfolio-heading', 'label' => 'Portfólio'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$chapters[] = ['id' => 'method-heading', 'label' => 'Método'];
|
||||||
|
|
||||||
|
if ($content->testimonials->isNotEmpty()) {
|
||||||
|
$chapters[] = ['id' => 'testimonials-heading', 'label' => 'Depoimentos'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$chapters[] = ['id' => 'positioning-heading', 'label' => 'A Amare'];
|
||||||
|
$chapters[] = ['id' => 'final-cta-heading', 'label' => 'Próximo passo'];
|
||||||
|
@endphp
|
||||||
|
|
||||||
|
<x-home.chapter-index :chapters="$chapters" />
|
||||||
|
|
||||||
<x-home.hero :settings="$content->settings" />
|
<x-home.hero :settings="$content->settings" />
|
||||||
<x-home.proof :cases="$content->featuredCases" />
|
<x-home.manifesto :settings="$content->settings" />
|
||||||
<x-home.services :services="$content->featuredServices" />
|
<x-home.services :services="$content->featuredServices" />
|
||||||
|
<x-home.portfolio :cases="$content->featuredCases" />
|
||||||
<x-home.method :settings="$content->settings" />
|
<x-home.method :settings="$content->settings" />
|
||||||
<x-home.cases :cases="$content->featuredCases" />
|
|
||||||
<x-home.testimonials :testimonials="$content->testimonials" />
|
<x-home.testimonials :testimonials="$content->testimonials" />
|
||||||
|
<x-home.positioning :settings="$content->settings" />
|
||||||
<x-home.final-cta :settings="$content->settings" />
|
<x-home.final-cta :settings="$content->settings" />
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -1,32 +1,36 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare space-y-10">
|
<div class="border-b border-amare-border bg-amare-bg-deep" data-motion="page-open">
|
||||||
<div class="max-w-2xl space-y-3">
|
<div class="container-amare space-y-10 py-16 md:py-24">
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Portfólio</h1>
|
<div class="max-w-2xl space-y-4">
|
||||||
<p class="text-lg text-amare-text-muted">Casos reais de celebrações conduzidas com atenção a cada detalhe.</p>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Portfólio</p>
|
||||||
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text md:text-5xl">Atmosferas que contam histórias.</h1>
|
||||||
|
<p class="text-lg text-amare-muted">Casos conduzidos com atenção a ritmo, composição e cada detalhe da experiência.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if ($cases->isEmpty())
|
@if ($cases->isEmpty())
|
||||||
<p class="text-amare-text-muted">Em breve publicaremos novos casos.</p>
|
<p class="text-amare-muted">Novos casos serão publicados assim que o acervo estiver organizado. Enquanto isso, fale conosco para conhecer o nosso trabalho.</p>
|
||||||
@else
|
@else
|
||||||
<div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
|
<div class="grid gap-10 md:grid-cols-2">
|
||||||
@foreach ($cases as $case)
|
@foreach ($cases as $case)
|
||||||
<article class="space-y-3">
|
<article class="space-y-4">
|
||||||
@if (filled($case->cover_image_path))
|
@if (filled($case->cover_image_path))
|
||||||
<a href="{{ route('portfolio.show', $case->slug) }}">
|
<a href="{{ route('portfolio.show', $case->slug) }}" class="block overflow-hidden">
|
||||||
<x-media.image
|
<x-media.image
|
||||||
:path="$case->cover_image_path"
|
:path="$case->cover_image_path"
|
||||||
:alt="$case->cover_image_alt ?: $case->title"
|
:alt="$case->cover_image_alt ?: $case->title"
|
||||||
sizes="(max-width: 768px) 100vw, 33vw"
|
sizes="(max-width: 768px) 100vw, 50vw"
|
||||||
class="aspect-[4/3] w-full object-cover"
|
class="img-editorial aspect-[4/3] w-full object-cover transition-transform duration-(--amare-duration-slow) ease-(--amare-ease-standard) motion-safe:hover:scale-[1.02]"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
@endif
|
@endif
|
||||||
<h2 class="text-xl font-semibold text-amare-text">
|
<div class="space-y-2 border-t border-amare-border pt-4">
|
||||||
<a href="{{ route('portfolio.show', $case->slug) }}" class="hover:text-amare-accent">{{ $case->title }}</a>
|
<h2 class="text-2xl font-medium text-amare-text">
|
||||||
|
<a href="{{ route('portfolio.show', $case->slug) }}" class="transition-colors hover:text-amare-accent">{{ $case->title }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
<p class="text-sm text-amare-text-muted">{{ $case->summary }}</p>
|
<p class="text-sm text-amare-muted">{{ $case->summary }}</p>
|
||||||
|
</div>
|
||||||
</article>
|
</article>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
@@ -35,5 +39,8 @@
|
|||||||
{{ $cases->links() }}
|
{{ $cases->links() }}
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
<p class="text-sm text-amare-accent">Imagens demonstrativas enquanto o acervo autorizado da Amare está em organização.</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -1,12 +1,14 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<article class="container-amare space-y-10">
|
<article data-motion="page-open">
|
||||||
|
<div class="border-b border-amare-border bg-amare-bg">
|
||||||
|
<div class="container-amare space-y-8 py-16 md:py-24">
|
||||||
<header class="max-w-3xl space-y-4">
|
<header class="max-w-3xl space-y-4">
|
||||||
<p class="text-sm uppercase tracking-[0.18em] text-amare-accent">{{ $case->event_type }}</p>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">{{ $case->event_type }}</p>
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">{{ $case->title }}</h1>
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text md:text-5xl">{{ $case->title }}</h1>
|
||||||
<p class="text-lg text-amare-text-muted">{{ $case->summary }}</p>
|
<p class="text-lg text-amare-muted">{{ $case->summary }}</p>
|
||||||
<p class="text-sm text-amare-text-muted">
|
<p class="text-sm text-amare-muted">
|
||||||
@if ($case->city){{ $case->city }}@endif
|
@if ($case->city){{ $case->city }}@endif
|
||||||
@if ($case->venue) · {{ $case->venue }}@endif
|
@if ($case->venue) · {{ $case->venue }}@endif
|
||||||
@if ($case->event_date) · {{ $case->event_date->format('d/m/Y') }}@endif
|
@if ($case->event_date) · {{ $case->event_date->format('d/m/Y') }}@endif
|
||||||
@@ -18,46 +20,52 @@
|
|||||||
:path="$case->cover_image_path"
|
:path="$case->cover_image_path"
|
||||||
:alt="$case->cover_image_alt ?: $case->title"
|
:alt="$case->cover_image_alt ?: $case->title"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
sizes="(max-width: 1024px) 100vw, 72rem"
|
sizes="(max-width: 1024px) 100vw, 1120px"
|
||||||
class="aspect-[16/9] w-full object-cover"
|
class="img-editorial aspect-[16/9] w-full object-cover"
|
||||||
/>
|
/>
|
||||||
@endif
|
@endif
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="grid gap-8 md:grid-cols-3">
|
<div class="border-b border-amare-border bg-amare-bg-deep">
|
||||||
<section class="space-y-2">
|
<div class="container-amare grid gap-10 py-16 md:grid-cols-3">
|
||||||
<h2 class="text-xl font-semibold text-amare-text">Desafio</h2>
|
<section class="space-y-3">
|
||||||
<p class="text-amare-text-muted">{!! nl2br(e($case->challenge)) !!}</p>
|
<h2 class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Desafio</h2>
|
||||||
|
<p class="text-amare-muted">{!! nl2br(e($case->challenge)) !!}</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="space-y-2">
|
<section class="space-y-3">
|
||||||
<h2 class="text-xl font-semibold text-amare-text">Solução</h2>
|
<h2 class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Solução</h2>
|
||||||
<p class="text-amare-text-muted">{!! nl2br(e($case->solution)) !!}</p>
|
<p class="text-amare-muted">{!! nl2br(e($case->solution)) !!}</p>
|
||||||
</section>
|
</section>
|
||||||
@if (filled($case->result))
|
@if (filled($case->result))
|
||||||
<section class="space-y-2">
|
<section class="space-y-3">
|
||||||
<h2 class="text-xl font-semibold text-amare-text">Resultado</h2>
|
<h2 class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Resultado</h2>
|
||||||
<p class="text-amare-text-muted">{!! nl2br(e($case->result)) !!}</p>
|
<p class="text-amare-muted">{!! nl2br(e($case->result)) !!}</p>
|
||||||
</section>
|
</section>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
@if ($case->images->isNotEmpty())
|
@if ($case->images->isNotEmpty())
|
||||||
<section aria-labelledby="gallery-heading" class="space-y-6">
|
<section aria-labelledby="gallery-heading" class="bg-amare-bg">
|
||||||
<h2 id="gallery-heading" class="text-2xl font-semibold text-amare-text">Galeria</h2>
|
<div class="container-amare space-y-8 py-16">
|
||||||
<div class="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
|
<h2 id="gallery-heading" class="text-3xl font-medium text-amare-text">Galeria</h2>
|
||||||
|
<div class="grid gap-6 md:grid-cols-2">
|
||||||
@foreach ($case->images as $image)
|
@foreach ($case->images as $image)
|
||||||
<figure class="space-y-2">
|
<figure class="space-y-2">
|
||||||
<x-media.image
|
<x-media.image
|
||||||
:path="$image->path"
|
:path="$image->path"
|
||||||
:alt="$image->alt_text"
|
:alt="$image->alt_text"
|
||||||
sizes="(max-width: 768px) 100vw, 33vw"
|
sizes="(max-width: 768px) 100vw, 50vw"
|
||||||
class="aspect-square w-full object-cover"
|
class="img-editorial aspect-[4/3] w-full object-cover"
|
||||||
/>
|
/>
|
||||||
@if (filled($image->caption))
|
@if (filled($image->caption))
|
||||||
<figcaption class="text-sm text-amare-text-muted">{{ $image->caption }}</figcaption>
|
<figcaption class="text-sm text-amare-muted">{{ $image->caption }}</figcaption>
|
||||||
@endif
|
@endif
|
||||||
</figure>
|
</figure>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@endif
|
@endif
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare max-w-3xl space-y-6">
|
<div class="border-b border-amare-border bg-amare-bg">
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Política de privacidade</h1>
|
<div class="container-amare max-w-3xl space-y-6 py-16 md:py-24">
|
||||||
<p class="text-amare-text-muted">
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Privacidade</p>
|
||||||
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text">Política de privacidade</h1>
|
||||||
|
<p class="text-amare-muted">
|
||||||
A {{ $siteSettings->brand_name }} trata dados pessoais com responsabilidade e somente para finalidades
|
A {{ $siteSettings->brand_name }} trata dados pessoais com responsabilidade e somente para finalidades
|
||||||
relacionadas ao atendimento de interessados e à operação do site.
|
relacionadas ao atendimento de interessados e à operação do site.
|
||||||
</p>
|
</p>
|
||||||
<p class="text-amare-text-muted">
|
<p class="text-amare-muted">
|
||||||
Para dúvidas sobre privacidade, escreva para
|
Para dúvidas sobre privacidade, escreva para
|
||||||
<a href="mailto:{{ $siteSettings->email }}" class="text-amare-accent hover:text-amare-accent-hover">{{ $siteSettings->email }}</a>.
|
<a href="mailto:{{ $siteSettings->email }}" class="text-amare-accent transition-colors hover:text-amare-accent-deep">{{ $siteSettings->email }}</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||
@@ -1,36 +1,44 @@
|
|||||||
@extends('layouts.public')
|
@extends('layouts.public')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="container-amare space-y-10">
|
<div class="border-b border-amare-border bg-amare-bg" data-motion="page-open">
|
||||||
<div class="max-w-2xl space-y-3">
|
<div class="container-amare space-y-10 py-16 md:py-24">
|
||||||
<h1 class="text-4xl font-semibold text-amare-text">Serviços</h1>
|
<div class="max-w-2xl space-y-4">
|
||||||
<p class="text-lg text-amare-text-muted">Assessoria completa para casamentos e eventos corporativos.</p>
|
<p class="text-xs font-semibold uppercase tracking-[0.14em] text-amare-accent">Serviços</p>
|
||||||
|
<h1 class="text-4xl font-medium tracking-tight text-amare-text md:text-5xl">Uma mesma excelência, diferentes ocasiões.</h1>
|
||||||
|
<p class="text-lg text-amare-muted">O escopo é construído de acordo com o momento do projeto, o nível de apoio necessário e a complexidade de cada evento.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if ($services->isEmpty())
|
@if ($services->isEmpty())
|
||||||
<p class="text-amare-text-muted">Em breve publicaremos o catálogo de serviços.</p>
|
<p class="text-amare-muted">O catálogo de serviços está em organização. Enquanto isso, fale conosco para uma primeira conversa.</p>
|
||||||
@else
|
@else
|
||||||
<div class="grid gap-8 md:grid-cols-2">
|
<div class="divide-y divide-amare-border border-y border-amare-border">
|
||||||
@foreach ($services as $service)
|
@foreach ($services as $index => $service)
|
||||||
<article class="space-y-3 border-t border-amare-border pt-6">
|
<article class="grid gap-4 py-8 md:grid-cols-[5rem_minmax(0,1fr)_minmax(0,1.2fr)] md:items-start">
|
||||||
|
<span class="text-sm font-semibold uppercase tracking-[0.14em] text-amare-accent">{{ str_pad((string) ($index + 1), 2, '0', STR_PAD_LEFT) }}</span>
|
||||||
|
<div class="space-y-3">
|
||||||
|
<h2 class="text-2xl font-medium text-amare-text md:text-3xl">{{ $service->title }}</h2>
|
||||||
|
<p class="text-amare-muted">{{ $service->summary }}</p>
|
||||||
|
</div>
|
||||||
|
<div class="space-y-4">
|
||||||
@if (filled($service->cover_image_path))
|
@if (filled($service->cover_image_path))
|
||||||
<x-media.image
|
<x-media.image
|
||||||
:path="$service->cover_image_path"
|
:path="$service->cover_image_path"
|
||||||
:alt="$service->cover_image_alt ?: $service->title"
|
:alt="$service->cover_image_alt ?: $service->title"
|
||||||
sizes="(max-width: 768px) 100vw, 50vw"
|
sizes="(max-width: 768px) 100vw, 40vw"
|
||||||
class="aspect-[16/10] w-full object-cover"
|
class="img-editorial aspect-[16/10] w-full object-cover"
|
||||||
/>
|
/>
|
||||||
@endif
|
@endif
|
||||||
<h2 class="text-2xl font-semibold text-amare-text">{{ $service->title }}</h2>
|
|
||||||
<p class="text-amare-text-muted">{{ $service->summary }}</p>
|
|
||||||
@if (filled($service->description))
|
@if (filled($service->description))
|
||||||
<div class="prose prose-amare max-w-none text-amare-text-muted">
|
<div class="text-amare-muted">
|
||||||
{!! nl2br(e($service->description)) !!}
|
{!! nl2br(e($service->description)) !!}
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
</div>
|
||||||
</article>
|
</article>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|||||||