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.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
'slug' => 'transfer',
|
|
'name' => 'Transfer',
|
|
'logo' => 'images/logo/ladilltransfer-logo.svg',
|
|
'icon' => 'transfer.svg',
|
|
'tagline' => 'Send and receive files securely',
|
|
'headline' => 'Large file sharing, simplified',
|
|
'accent' => 'secure links and tracked downloads',
|
|
'description' => 'Transfer lets you send large files with password-protected links, expiry dates, and download tracking — no email attachment limits.',
|
|
'benefits' =>
|
|
[
|
|
0 =>
|
|
[
|
|
'title' => 'Big files, small hassle',
|
|
'text' => 'Share files too large for email with a simple link.',
|
|
,]
|
|
1 =>
|
|
[
|
|
'title' => 'Access controls',
|
|
'text' => 'Set passwords, expiry, and download limits.',
|
|
,]
|
|
2 =>
|
|
[
|
|
'title' => 'Delivery tracking',
|
|
'text' => 'Know when your files are opened and downloaded.',
|
|
,]
|
|
,]
|
|
'use_cases' =>
|
|
[
|
|
0 => 'Client deliverables',
|
|
1 => 'Media & design files',
|
|
2 => 'Internal document sharing',
|
|
,]
|
|
'gradient_from' => '#0ea5e9',
|
|
'gradient_to' => '#4f46e5',
|
|
'dashboard_route' => 'transfer.dashboard',
|
|
'platform_url' => 'https://localhost',
|
|
'marketing_url' => 'https://localhost/products/transfer',
|
|
'register_url' => 'https://auth.localhost/register',
|
|
'landing_variant' => 'default',
|
|
];
|