Skip to content

Commit cd54e15

Browse files
committed
feat: Add legal.mtex.dev to config. Also: Update footer: Add legal-links and PHP_VERSION ...
1 parent a3cd6a3 commit cd54e15

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

config.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
return [
4-
'version' => 'v1.2.4',
4+
'version' => 'v1.2.5',
55
'services' => [
66
[
77
'address' => 'https://mtex.dev',
@@ -10,6 +10,13 @@
1010
'github' => 'https://github.com/MTEDdotDev/static-landingpage',
1111
'is_deployed' => true,
1212
],
13+
[
14+
'address' => 'https://legal.mtex.dev',
15+
'name' => 'Legal Center',
16+
'description' => 'Multilingual hub for imprint, privacy policies, and legal documentation.',
17+
'github' => 'https://github.com/MTEXdotDev/legal.mtex.dev',
18+
'is_deployed' => true,
19+
],
1320
[
1421
'address' => 'https://tw.mtex.dev',
1522
'name' => 'Tailwind Components Libary',

index.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,16 +120,19 @@ class="text-neutral-500 hover:text-white transition-colors flex items-center gap
120120
</div>
121121

122122
<footer class="mt-16 md:mt-24 pt-8 md:pt-12 border-t border-neutral-900 pb-8 md:pb-12">
123-
<div class="flex flex-col md:flex-row items-center justify-between gap-6 text-neutral-600 text-xs">
123+
<div class="flex flex-col md:flex-row items-center justify-between gap-8 text-neutral-600 text-xs">
124124
<div class="flex flex-col sm:flex-row items-center gap-2 sm:gap-4 text-center sm:text-left">
125125
<span class="font-medium text-neutral-500">&copy; <?php echo date('Y'); ?> MTEX.dev</span>
126126
<span class="hidden sm:inline text-neutral-800">|</span>
127-
<a href="https://github.com/MTEDdotDev/status.mtex.dev" target="_blank" class="hover:text-neutral-300 transition-colors underline decoration-neutral-800 underline-offset-4">GitHub Repository</a>
127+
<div class="flex items-center gap-4">
128+
<a href="https://legal.mtex.dev/imprint" target="_blank" class="hover:text-neutral-300 transition-colors">Imprint</a>
129+
<a href="https://legal.mtex.dev/privacy" target="_blank" class="hover:text-neutral-300 transition-colors">Privacy</a>
130+
</div>
128131
</div>
129132
<div class="flex items-center gap-4 uppercase tracking-widest font-bold">
130-
<span><?php echo $config['version']; ?></span>
133+
<span class="text-neutral-700"><?php echo $config['version']; ?></span>
131134
<span class="text-neutral-800">/</span>
132-
<span class="text-neutral-700">DE</span>
135+
<span class="text-neutral-700">PHP <?php echo PHP_VERSION; ?></span>
133136
<span class="text-neutral-800">/</span>
134137
<span class="text-neutral-700"><?php echo(round(memory_get_usage() / 1024 / 1024, 2) . ' MB') ?></span>
135138
</div>

0 commit comments

Comments
 (0)