@extends('layouts.master') @push('additional-css') @vite(['resources/css/theme-comply.css']) @endpush @push('additional-js') @vite(['resources/js/theme-comply.js']) @endpush @section('page-content')

{!!__('app.pages.home.sections.introduction.catch-phrase')!!}

{!!__('app.pages.home.sections.introduction.description')!!}

@guest {{__('app.pages.home.sections.introduction.log-in')}} {{__('app.pages.home.sections.introduction.register')}} @endguest @auth {{__('app.pages.home.sections.introduction.goto-datastores')}} @endauth

{!!__('app.pages.home.sections.features.catch-phrase')!!}

{!!__('app.pages.home.sections.features.description')!!}

@foreach(__('app.pages.home.sections.features.elements') as $element)
{!!$element['title']!!}

{!!$element['description']!!}

@endforeach
@endsection