@extends('layouts.generic') @section('page_description', getSetting('site.description')) @section('share_url', route('home')) @section('share_title', getSetting('site.name') . ' - ' . getSetting('site.slogan')) @section('share_description', getSetting('site.description')) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('scripts') @verbatim @endverbatim @stop @section('styles') {!! Minify::stylesheet([ '/css/pages/search.css', ])->withFullUrl() !!} @stop @section('content') @php $experienceCards = [ [ 'image' => '/img/home-scene-1.svg', 'title' => __('Built for monetization'), 'description' => __('homepage_subHeader_paywall_description'), ], [ 'image' => '/img/home-scene-2.svg', 'title' => __('Made for creators and fans'), 'description' => __('homepage_subHeader_fans_description'), ], [ 'image' => '/img/home-scene-3.svg', 'title' => __('Premium content, better discovery'), 'description' => __('homepage_subHeader_content_description'), ], ]; $featureCards = [ [ 'icon' => 'wallet-outline', 'title' => __('Advanced paywall'), 'description' => __('homepage_paywall_description'), ], [ 'icon' => 'albums-outline', 'title' => __('Advanced posting capabilities'), 'description' => __('homepage_posting_description'), ], [ 'icon' => 'chatbubbles-outline', 'title' => __('Live chat & Notifications'), 'description' => __('homepage_chat_description'), ], [ 'icon' => 'phone-portrait-outline', 'title' => __('Mobile Ready'), 'description' => __('homepage_mobile_description'), ], [ 'icon' => 'moon-outline', 'title' => __('Light & Dark themes'), 'description' => __('homepage_themes_description'), ], [ 'icon' => 'language-outline', 'title' => __('RTL & Locales'), 'description' => __('homepage_rtl_description'), ], [ 'icon' => 'bookmarks-outline', 'title' => __('Post Bookmarks & User lists'), 'description' => __('homepage_lists_description'), ], [ 'icon' => 'flag-outline', 'title' => __('Content flagging and User reports'), 'description' => __('homepage_reports_description'), ], [ 'icon' => 'videocam-outline', 'title' => __('Live streaming'), 'description' => __('homepage_live_description'), ], ]; @endphp @php $themeIllustrations = app(\App\Services\ThemeIllustrationService::class); @endphp
{{ __('Built for modern creator businesses') }}

{{ __('Make more money') }} {{ __('from your content') }}

{{ __('Launch a premium content platform that feels polished from day one, with subscriptions, direct engagement, discovery, and growth tools.') }}

{{ __('Make more money') }}
{{ __('Platform experience') }}

{{ __('A better experience for creators and fans') }}

{{ __('Modern onboarding, cleaner discovery and a more polished member journey help the whole product feel premium from the first click.') }}

@foreach($experienceCards as $card)
{{ $card['title'] }}

{{ $card['title'] }}

{{ $card['description'] }}

@endforeach
{{ __('Create your creator profile in minutes') }}
{{ __('Creator onboarding') }}

{{ __('Create your creator profile in minutes') }}

{{ __('Give creators a faster path to launch with subscriptions, paid posts and a profile flow that already feels ready for revenue.') }}

{{ __('Monetize from day one') }} {{ __('Enable subscriptions, paid posts and direct support before your first audience even arrives.') }}
{{ __('Set up access in one flow') }} {{ __('Handle profile details, pricing and verification in a creator journey that stays simple from start to finish.') }}
{{ __('Become a creator') }}
{{ __('Core platform') }}

{{ __('Everything you need to launch and scale') }}

{{ __('Subscriptions, messaging, moderation, streaming and mobile-ready flows are already built in, so the product feels complete from day one.') }}

@foreach($featureCards as $feature)
@include('elements.icon',['icon'=>$feature['icon'],'variant'=>'medium','centered'=>false,'classes'=>'text-primary'])

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach
{{ __('Featured creators') }}

{{ __('Creators worth discovering') }}

{{ __('Discover creators, explore their vibe, and get a feel for the community your platform can bring together.') }}

@if(count($featuredMembers))
@foreach($featuredMembers as $member)
@include('elements.feed.suggestion-card',['profile' => $member, 'cardRadius' => 'rounded-xl'])
@endforeach
@endif
{{ __('Ready to launch') }}

{{ __('Launch on a platform that feels premium') }}

{{ __('Start from a polished base and spend more time on brand, creators and growth instead of rebuilding the core product experience.') }}

@stop