fixed sales pitxh

This commit is contained in:
Frank Harris 2026-06-16 10:14:41 -05:00
parent e448b415ff
commit 48afc9d770
675 changed files with 248 additions and 83827 deletions

View file

@ -32,8 +32,8 @@ foreach ($websiteConfigFiles as $configFile) {
$websiteDefaults = [
'site_name' => 'Gameservers.World',
'site_tagline' => 'Virtual private game servers with dedicated resources and full configuration access.',
'meta_description' => 'Virtual private game servers with dedicated resources, predictable performance, full configuration access, mod support, and real human support.',
'site_tagline' => 'Developer-backed game hosting with full server access, mod support, daily backups, and optional custom engineering help through Runlevel Systems.',
'meta_description' => 'Affordable virtual private game servers backed by developers, software engineers, and infrastructure specialists. Launch a standard server or get help with mods, automation, integrations, and custom tooling.',
'base_path' => null,
'public_base_url' => null,
'billing_base_url' => '/billing',
@ -442,6 +442,21 @@ function website_fetch_services(int $limit = 0): array
return $rows;
}
function website_custom_project_url(): string
{
$supportUrl = trim((string)website_config('support_url', ''));
if ($supportUrl !== '') {
return $supportUrl;
}
$discordUrl = trim((string)website_config('discord_url', ''));
if ($discordUrl !== '') {
return $discordUrl;
}
return website_url('support.php');
}
function website_fetch_doc_index(): array
{
$docsRoot = website_billing_docs_root();
@ -503,4 +518,3 @@ function website_render(string $pageTemplate, array $context = []): void
require WEBSITE_ROOT_DIR . '/pages/' . $pageTemplate;
require WEBSITE_INCLUDE_DIR . '/footer.php';
}