15 lines
818 B
PHP
15 lines
818 B
PHP
<?php
|
|
|
|
return [
|
|
// :quota is the quota ceiling of the largest package currently on sale,
|
|
// read live off $plans (LandingController::enterprise()) rather than
|
|
// written in here — a catalogue restructure moves what "the largest" is,
|
|
// and a fixed figure would go on quietly naming the wrong one. No fixed
|
|
// second, lower threshold in the body either ("from 500 GB"): the
|
|
// dedicated machine starts exactly where the largest package ends, and
|
|
// how big it gets is a hardware question, not a price-sheet number.
|
|
'enterprise_title' => 'More than :quota? Then a dedicated machine.',
|
|
'enterprise_body' => 'We set up a server that runs only your cloud — sized, powered and backed up to your needs. We work out the numbers with you.',
|
|
'enterprise_cta' => 'Request a quote',
|
|
];
|