remove company support section until clarified

This commit is contained in:
vcoppe
2026-02-11 18:31:08 +01:00
parent b8c1500aad
commit 1137e851ce
3 changed files with 0 additions and 23 deletions

View File

@@ -1,2 +0,0 @@
MapTiler is the company that provides some of the beautiful maps on this website.
This partnership allows **gpx.studio** to benefit from MapTiler tools at discounted prices, greatly contributing to the financial viability of the project and enabling us to offer the best possible user experience.

View File

@@ -29,7 +29,6 @@
data: {
fundingModule: Promise<any>;
translationModule: Promise<any>;
maptilerModule: Promise<any>;
};
} = $props();
@@ -272,23 +271,4 @@
</Button>
</div>
</div>
<div class="px-12 md:px-24 flex flex-col items-center">
<div
class="max-w-4xl flex flex-col lg:flex-row items-center justify-center gap-x-12 gap-y-6 p-6 border rounded-2xl shadow-xl bg-secondary"
>
<div
class="shrink-0 flex flex-col sm:flex-row lg:flex-col items-center gap-x-4 gap-y-2"
>
<div class="text-lg font-semibold text-muted-foreground">
❤️ {i18n._('homepage.supported_by')}
</div>
<a href="https://www.maptiler.com/" target="_blank">
<Logo company="maptiler" class="w-60" />
</a>
</div>
{#await data.maptilerModule then maptilerModule}
<DocsContainer module={maptilerModule.default} />
{/await}
</div>
</div>
</div>

View File

@@ -9,6 +9,5 @@ export async function load({ params }) {
return {
fundingModule: getModule(language, 'funding'),
translationModule: getModule(language, 'translation'),
maptilerModule: getModule(language, 'maptiler'),
};
}