@extends("landingpage::themes.{$activeTheme}.layouts.app") @php // $page is passed from FrontendPageController // You might fetch additional solution-specific data here or in the controller // For example, related case studies, technical specifications, etc. @endphp @section('meta_title', ($page->meta_title ?: $page->title) . ' - AI Solution') @section('meta_description', $page->meta_description ?: 'Detailed information about our ' . $page->title . ' AI solution.') @push('schema_markup') @endpush @section('content')
{{-- Breadcrumbs or Back Link --}}

{{ $page->title }}

@if($page->featured_image_url) {{ $page->title }} @endif
{!! $page->content !!} {{-- Main content describing the solution --}}
{{-- Solution-Specific Sections (Example) --}}

Key Features & Benefits

{{-- Placeholder: list features, benefits, tech stack, case studies related to this solution --}}
  • Feature A: Solves problem X with Y technology.
  • Benefit B: Increases efficiency by Z%.
  • Technology Stack: Python, TensorFlow, Kubernetes.
@endsection