@extends('website.layouts.app') @section('title', ($page['title'] ?? 'Learnyst') . ' – ' . config('website.brand')) @section('meta_description', $page['summary'] ?? '') @section('content') @php $cta = config('website.cta'); $brand = config('website.brand'); $pageType = $type ?? 'product'; $relatedRoute = $relatedRoute ?? 'website.product'; $isSolution = $pageType === 'solution'; @endphp
@if(!empty($page['eyebrow']))

{{ $page['eyebrow'] }}

@endif

{{ $page['title'] }}

{{ $page['summary'] }}

@if(!empty($page['hero_image_url']))
{{ $page['title'] }}
@endif

{{ $page['caption'] ?? ($isSolution ? 'Solutions' : 'Products') }}

{{ $isSolution ? 'Built for your niche academy' : 'Why educators choose this' }}

{{ $page['body'] }}

@if(!empty($page['features']))
    @foreach($page['features'] as $feature)
  • {{ $feature }}
  • @endforeach
@endif
@if(!empty($page['hero_image_url'])) @else
{{ $brand }} {{ $page['title'] }}
@endif
@if(!empty($page['benefits']))

{{ $isSolution ? 'Everything your students need' : 'Built for real academy workflows' }}

@if($isSolution) A complete stack to teach, test, engage, and sell {{ $page['title'] }} programs under your brand. @else Everything you need to deliver {{ strtolower($page['title']) }} with less friction and more polish. @endif

@foreach($page['benefits'] as $benefit)

{{ $benefit['title'] }}

{{ $benefit['desc'] }}

@endforeach
@endif @if(!empty($page['stats']))
@foreach($page['stats'] as $stat)
{{ $stat['value'] }} {{ $stat['label'] }}
@endforeach
@endif @if(!empty($page['use_cases']))

Who it’s perfect for

@if($isSolution) From specialist tutors to full institutes β€” adapt this solution to how you teach. @else From first launch to scaled academies β€” adapt this product to your teaching model. @endif

@foreach($page['use_cases'] as $useCase)

{{ $useCase['title'] }}

{{ $useCase['desc'] }}

@endforeach
@endif @if(!empty($page['faq']))

Frequently asked questions

Quick answers before you start your trial.

@foreach($page['faq'] as $item)
{{ $item['question'] }}

{{ $item['answer'] }}

@endforeach
@endif @if(!empty($related))

{{ $isSolution ? 'Explore related solutions' : 'Explore related products' }}

@if($isSolution) Discover more verticals educators grow successfully on Learnyst. @else Build a complete teaching and sales stack under one brand. @endif

@endif

{{ $page['cta_title'] ?? 'Ready to get started?' }}

{{ $page['cta_text'] ?? 'Start your free trial and launch your academy in minutes.' }}

@endsection