Serve a marketing landing page at the site root via ProductLandingController instead of redirecting straight to login, with config/product_landing.php and product views. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'slug' => 'events',
|
|
'name' => 'Events',
|
|
'logo' => 'images/logo/ladillevents-logo.svg',
|
|
'icon' => 'events.svg',
|
|
'tagline' => 'Tickets and event registration',
|
|
'headline' => 'Sell tickets and manage check-in',
|
|
'accent' => 'registration, ticketing, and attendance',
|
|
'description' => 'Events handles ticket sales, RSVPs, and check-in for conferences, concerts, church programs, and community gatherings.',
|
|
'benefits' =>
|
|
[
|
|
0 =>
|
|
[
|
|
'title' => 'Paid or free events',
|
|
'text' => 'Sell tickets with mobile money and cards, or run RSVP-only events.',
|
|
,]
|
|
1 =>
|
|
[
|
|
'title' => 'Check-in tools',
|
|
'text' => 'Scan attendees at the door with QR codes.',
|
|
,]
|
|
2 =>
|
|
[
|
|
'title' => 'Attendee management',
|
|
'text' => 'Export guest lists and track attendance in real time.',
|
|
,]
|
|
,]
|
|
'use_cases' =>
|
|
[
|
|
0 => 'Conferences',
|
|
1 => 'Church programs',
|
|
2 => 'Concerts & meetups',
|
|
,]
|
|
'gradient_from' => '#7c3aed',
|
|
'gradient_to' => '#1c75bc',
|
|
'dashboard_route' => 'events.dashboard',
|
|
'platform_url' => 'https://localhost',
|
|
'marketing_url' => 'https://localhost/products/events',
|
|
'register_url' => 'https://auth.localhost/register',
|
|
'landing_variant' => 'default',
|
|
];
|