Skip to content

Commit

Permalink
update assets location
Browse files Browse the repository at this point in the history
  • Loading branch information
larsschieffer committed May 2, 2024
1 parent f09b9a5 commit 818f482
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/constants/assets-location.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const ASSETS_LOCATION = "https://assets.larsschieffer.de/";
export const ASSETS_LOCATION = "https://assets.lars.schieffer.cloud/";
2 changes: 1 addition & 1 deletion app/constants/sitemap.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { SitemapUrl } from "~/types/sitemap";

export const DOMAINE = "larsschieffer.de";
export const DOMAINE = "lars.schieffer.cloud";
export const WEBSITE_URL = `https://${DOMAINE}/`;
export const WEBSITE_PATHS: SitemapUrl[] = [
{ url: "about", changefreq: "yearly", priority: 0.5 },
Expand Down
2 changes: 1 addition & 1 deletion app/routes/robots[.]txt.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const loader = (): Response => {
const robotText = `User-agent: *
Disallow:
Sitemap: https://larsschieffer.de/sitemap.xml`;
Sitemap: https://lars.schieffer.cloud/sitemap.xml`;

return new Response(robotText, {
status: 200,
Expand Down
2 changes: 1 addition & 1 deletion public/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"currentLocation": "Saarland, Germany"
},
"contact": {
"email": "contact@larsschieffer.de"
"email": "contact@lars.schieffer.cloud"
},
"copyright": {
"rightsReserved": "All rights reserved"
Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ module.exports = {
},
backgroundImage: {
body: `
url('https://assets.larsschieffer.de/left_upper_corner.svg'),
url('https://assets.larsschieffer.de/right_lower_corner.svg')
url('https://assets.lars.schieffer.cloud/left_upper_corner.svg'),
url('https://assets.lars.schieffer.cloud/right_lower_corner.svg')
`,
},
backgroundPosition: {
Expand Down

0 comments on commit 818f482

Please sign in to comment.