@extends('layouts.subweb') @section('title', $page->meta_title ?? 'Company Profile — ' . $brand->name) @section('meta_description', $page->meta_description ?? $brand->description) @section('content') @php $s = $page->sections ?? []; $about = $s['about'] ?? []; $vision = $s['vision'] ?? []; $services = $s['services'] ?? []; $team = $s['team'] ?? []; $clients = $s['clients'] ?? []; @endphp {{-- ── PAGE HEADER ── --}}
@if ($page->featured_image_url)
{{ $page->title }}
@endif

{{ $about['headline'] ?? $brand->name }}

{{ $about['lead'] ?? $brand->tagline }}

{{-- ── ABOUT ── --}} @if (!empty($about['body']))
{!! $about['body'] !!}
@if (!empty($about['stats']))
@foreach ($about['stats'] as $stat)
{{ $stat['value'] }}
{{ $stat['label'] }}
@endforeach
@endif
@endif {{-- ── VISION & MISSION ── --}} @if (!empty($vision))
@if (!empty($vision['vision']))
🎯

Visi

{{ $vision['vision'] }}

@endif @if (!empty($vision['mission']))
🚀

Misi

    @foreach ((array) $vision['mission'] as $item)
  • {{ $item }}
  • @endforeach
@endif @if (!empty($vision['values']))
💎

Nilai

    @foreach ((array) $vision['values'] as $item)
  • {{ $item }}
  • @endforeach
@endif
@endif {{-- ── SERVICES ── --}} @if (!empty($services))

{{ $s['services_title'] ?? 'Apa yang Kami Tawarkan' }}

@foreach ($services as $svc)
{{ $svc['icon'] ?? '⚡' }}

{{ $svc['title'] }}

{{ $svc['description'] }}

@endforeach
@endif {{-- ── TEAM ── --}} @if (!empty($team))

{{ $s['team_title'] ?? 'Orang-orang di Balik Vesta' }}

@foreach ($team as $member)
@if (!empty($member['photo'])) {{ $member['name'] }} @else
{{ mb_substr($member['name'], 0, 1) }}
@endif

{{ $member['name'] }}

{{ $member['role'] }}

@if (!empty($member['bio']))

{{ $member['bio'] }}

@endif
@endforeach
@endif {{-- ── CLIENTS ── --}} @if (!empty($clients))

{{ $s['clients_title'] ?? 'Dipercaya Oleh' }}

@foreach ($clients as $client)
@if (!empty($client['logo'])) {{ $client['name'] }} @else {{ $client['name'] }} @endif
@endforeach
@endif {{-- ── CONTACT ── --}}

Hubungi Kami

Konsultasikan kebutuhan digital bisnis Anda bersama tim {{ $brand->name }}.

@php $contactEmail = \App\Models\SiteSetting::get('contact_email', 'info@vestaglobal.co.id', $brand->id); @endphp
✉ {{ $contactEmail }} @php $contactPhone = \App\Models\SiteSetting::get('contact_phone', '', $brand->id); @endphp @if ($contactPhone) 📞 {{ $contactPhone }} @endif @php $address = \App\Models\SiteSetting::get('contact_address', '', $brand->id); @endphp @if ($address) 📍 {{ $address }} @endif
Mulai Konsultasi →
@endsection @push('styles') @endpush