diff --git a/frontend/src/routes/+page.svelte b/frontend/src/routes/+page.svelte index 6b5435e..5eb000e 100755 --- a/frontend/src/routes/+page.svelte +++ b/frontend/src/routes/+page.svelte @@ -149,10 +149,10 @@ $: $queryStore, browser && fetchCourses(); // SEO - const title = "DISKU - KU Courses 2.0"; + const title = "KU Courses"; const description = "A more precise, user-friendly way to browse courses offered by University of Copenhagen which acutally gives you the information you were looking for"; - const url = "https://disku.jniemela.dk"; + const url = "https://kucourses.dk"; let debounceTimeout: number; let firstDebounce = true; @@ -180,13 +180,13 @@ - + - + @@ -198,7 +198,7 @@
-

KU Courses 2.0

+

KU Courses

- + - + diff --git a/frontend/src/routes/sitemap.xml/+server.ts b/frontend/src/routes/sitemap.xml/+server.ts index d5a4435..8ebe268 100644 --- a/frontend/src/routes/sitemap.xml/+server.ts +++ b/frontend/src/routes/sitemap.xml/+server.ts @@ -1,6 +1,6 @@ import { dev } from "$app/environment"; -const url = dev ? "http://localhost:3000" : "https://disku.jniemela.dk"; +const url = dev ? "http://localhost:3000" : "https://kucourses.dk"; function today_yyyy_mm_dd(): string { const d = new Date(); diff --git a/frontend/src/stores.ts b/frontend/src/stores.ts index 710bf05..41db6b4 100644 --- a/frontend/src/stores.ts +++ b/frontend/src/stores.ts @@ -53,10 +53,10 @@ export function clearAll() { // API URL export function apiUrl() { - return "https://disku.jniemela.dk/api"; // SSR + return "https://kucourses.dk/api"; // SSR // check that window is defined, this is used for checking if we are running in the browser if (typeof window === "undefined") { - return "https://disku.jniemela.dk/api"; // SSR + return "https://kucourses.dk/api"; // SSR } const hostname = window.location.hostname;