@extends('layouts.app') @section('content')

{{$page->show('top:title')}}

{{$page->show('top:text')}} @guest {{$page->show('top:signup')}} @endguest

{{$page->show('features:title')}}

{{$page->show('features:text')}}
@foreach ($page->show('features:items') as $item)

{{$item['title']}}

{{$item['text']}}

@endforeach

{{$page->show('about-us:title')}}

{{$page->show('about-us:text')}}

{{$page->show('about-us:block-1-title')}}

{!!$page->show('about-us:block-1-text')!!}

{{$page->show('about-us:block-2-title')}}

{!!$page->show('about-us:block-2-text')!!}
@endsection