@extends('frontend::layouts.master') @section('content') {{-- Breadcrumb & Back --}}
Back to Blog / {{ $post['title'] }}
@include('frontend::components.tsic-ellipse-decoration') {{-- Article Hero - Gradient: primary/10 → accent/5 → background --}}
@if(!empty($post['category']) || !empty($post['readTime']))
@if(!empty($post['category'])) {{ $post['category'] }} @endif
@endif

{{ $post['title'] }}

{{ \Carbon\Carbon::parse($post['date'])->format('F j, Y') }}
{{-- Article Image / Featured --}}
@if(!empty($post['image'])) {{ $post['title'] }} @else
@endif
{{-- Article Content --}}

{{ $post['excerpt'] }}

{{ $post['body'] }}

{{-- Related Posts --}} @if(count($relatedPosts) > 0)
@include('frontend::components.tsic-ellipse-decoration')

Related Articles

More insights from TSIC

@endif {{-- CTA Section --}} @include('frontend::components.cta-section') {{-- CTA Section - gradient: primary → accent (stronger than hero) --}} {{--

Stay Updated

Subscribe to our newsletter for more industry insights and company news

Back to Blog
--}} @push('scripts') @endpush @endsection