Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions app/(home)/HomeBannerClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import layoutChildren from "../../types/layoutChildren";
import {useEffect, useState} from "react";

const images: string[] = [
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/bar-engine.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/clowns.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/conveyor.jpg",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/df.jpg",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/go-outsid.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/honk.jpg",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/hugger.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/lemons.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/shuttlecrash.png",
"https://unitystationfile.b-cdn.net/Website-Statics/heroImages/chairs.jpg",
"https://cdn.unitystation.org/Website-Statics/heroImages/bar-engine.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/clowns.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/conveyor.jpg",
"https://cdn.unitystation.org/Website-Statics/heroImages/df.jpg",
"https://cdn.unitystation.org/Website-Statics/heroImages/go-outsid.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/honk.jpg",
"https://cdn.unitystation.org/Website-Statics/heroImages/hugger.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/lemons.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/shuttlecrash.png",
"https://cdn.unitystation.org/Website-Statics/heroImages/chairs.jpg",
];

let currentIndex = 0;
Expand Down
2 changes: 1 addition & 1 deletion app/changelog/buildComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const DownloadBuildDropdown = (props: { version: string }) => {
{platforms.map((platform) => (
<a
key={platform}
href={`https://unitystationfile.b-cdn.net/UnityStationDevelop/${platform}/${props.version}.zip`}
href={`https://cdn.unitystation.org/UnityStationDevelop/${platform}/${props.version}.zip`}
className="block px-4 py-2 text-sm text-blue-50 hover:bg-gray-100 hover:text-gray-900"
role="menuitem"
onClick={handleClick}
Expand Down
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ html, body {
}

body {
background-image: url("https://unitystationfile.b-cdn.net/Website-Statics/layer1.png");
background-image: url("https://cdn.unitystation.org/Website-Statics/layer1.png");
}

a {
Expand Down
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const metadata: Metadata = {
description: 'Unitystation is a free and open-source chaotic multiplayer role-playing and simulation game made in Unity. Remake of the cult classic Space Station 13.',
images: [
{
url: 'https://unitystationfile.b-cdn.net/Branding/US13_OG_image_preview_1.png',
url: 'https://cdn.unitystation.org/Branding/US13_OG_image_preview_1.png',
},
]
}
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
remotePatterns: [
{
protocol: 'https',
hostname: 'unitystationfile.b-cdn.net',
hostname: 'cdn.unitystation.org',
port: '',
pathname: '/**/**',
},
Expand Down
Loading