Compare commits

...

5 Commits

Author SHA1 Message Date
Starystars67 74adf15820 fix build issues 2026-06-16 14:01:22 +01:00
Starystars67 19cbd9da15 nump version and address vulns 2026-06-16 13:48:57 +01:00
Starystars67 c7db28166f Correct json syntax 2026-06-16 13:46:33 +01:00
trebor8820 8fa3ed49be Update partners.json
Added TLS Servers-Studios
2026-06-16 13:46:33 +01:00
Starystars67 33764c3ede Create TLS_Servers-Studios.png 2026-06-16 13:41:53 +01:00
6 changed files with 572 additions and 626 deletions
+542 -579
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "beammp-website",
"private": true,
"version": "2.4.22",
"version": "2.4.24",
"type": "module",
"scripts": {
"dev": "vite",
@@ -33,6 +33,6 @@
"eslint-plugin-vue": "^10.6.2",
"prettier": "^3.7.3",
"tw-animate-css": "^1.4.0",
"vite": "^7.2.4"
"vite": "^8.0.16"
}
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 365 KiB

+6
View File
@@ -70,5 +70,11 @@
"website": "https://iceline-hosting.com/games/beammp",
"from": "$3.64/mo",
"logo": "https://iceline-hosting.com/_astro/logo.DTnWV5zL_157TDr.webp"
},
{
"name": "TLS Servers-Studios",
"website": "https://tlsservers.com/beammp",
"from": "$2.00/mo",
"logo": "/partner_logos/TLS_Servers-Studios.png"
}
]
+2 -2
View File
@@ -90,7 +90,7 @@ function localRoute(path) {
</RouterLink>
</NavigationMenuLink>
</NavigationMenuItem>
<!--<NavigationMenuItem>
<NavigationMenuItem>
<NavigationMenuLink as-child>
<RouterLink
:to="localRoute('servers')"
@@ -104,7 +104,7 @@ function localRoute(path) {
{{ $t('message.nav.servers') }}
</RouterLink>
</NavigationMenuLink>
</NavigationMenuItem>-->
</NavigationMenuItem>
<!--<NavigationMenuItem>
<NavigationMenuLink as-child>
<RouterLink
+19 -42
View File
@@ -945,28 +945,25 @@ function joinServer(server) {
color: var(--text-muted, #666);
}
:global(.dark) .servers-container,
@media (prefers-color-scheme: dark) {
.servers-container {
--text-color: #e0e0e0;
--text-muted: #999999;
--card-bg: #2a2a2a;
--border-color: #404040;
--input-bg: #1a1a1a;
--tag-bg: #404040;
--primary-color: #5d9cec;
--header-bg: #1f1f1f;
--hover-bg: #333333;
--active-bg: #2a3f5f;
--details-bg: #252525;
--filters-bg: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
--filters-border: rgba(255, 106, 0, 0.2);
--filters-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
--checkbox-bg: rgba(255, 255, 255, 0.05);
--checkbox-border: rgba(255, 255, 255, 0.15);
--checkbox-hover-shadow: rgba(255, 106, 0, 0.15);
--placeholder-color: #666666;
}
:global(.dark) .servers-container {
--text-color: #e0e0e0;
--text-muted: #999999;
--card-bg: #2a2a2a;
--border-color: #404040;
--input-bg: #1a1a1a;
--tag-bg: #404040;
--primary-color: #5d9cec;
--header-bg: #1f1f1f;
--hover-bg: #333333;
--active-bg: #2a3f5f;
--details-bg: #252525;
--filters-bg: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
--filters-border: rgba(255, 106, 0, 0.2);
--filters-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
--checkbox-bg: rgba(255, 255, 255, 0.05);
--checkbox-border: rgba(255, 255, 255, 0.15);
--checkbox-hover-shadow: rgba(255, 106, 0, 0.15);
--placeholder-color: #666666;
}
/* Mobile responsive */
@@ -1013,23 +1010,3 @@ function joinServer(server) {
}
}
</style>
/* Light theme defaults */
--text-color: #1a1a1a;
--text-muted: #666666;
--card-bg: #ffffff;
--border-color: #e0e0e0;
--input-bg: #ffffff;
--tag-bg: #e8e8e8;
--primary-color: #5d9cec;
--header-bg: #f5f5f5;
--hover-bg: #f9f9f9;
--active-bg: #f0f7ff;
--details-bg: #fafafa;
--filters-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 249, 249, 0.95) 100%);
--filters-border: var(--border-color, #e0e0e0);
--filters-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
--checkbox-bg: #ffffff;
--checkbox-border: #d0d0d0;
--checkbox-hover-shadow: rgba(255, 106, 0, 0.1);
--placeholder-color: var(--text-muted, #999999);