Skip to content

Commit

Permalink
🐳 On a paper submitted by a physicist colleague:
Browse files Browse the repository at this point in the history
"This isn't right.  This isn't even wrong."
		-- Wolfgang Pauli
  • Loading branch information
uebelack committed Aug 22, 2023
1 parent 8ffa9ce commit b9fc97c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Empty file modified bin/update-sitemap.ts
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion i18n/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {
Mit dieser App können Sie sich auf den Inhalt konzentrieren und müssen sich nicht um die Formatierung kümmern.
Vorlagen für Standardbriefe, wie z. B. die Kündigung von Abonnements oder Versicherungen, machen Ihnen das Leben noch leichter.`,
thumbnail: '/letter.svg',
link: 'https://apps.apple.com/app/letter/id498506154',
link: 'https://briefe.app',
},
skynjari: {
title: 'Skynjari',
Expand Down
2 changes: 1 addition & 1 deletion i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {
Even today, various things have to be done with classic letters. With this app, you can focus on the content and don't have to worry about formatting.
Templates for standard letters, such as the cancellation of subscriptions or insurance policies, make your life even easier.`,
thumbnail: '/letter.svg',
link: 'https://apps.apple.com/app/letter/id498506154',
link: 'https://briefe.app',
},
skynjari: {
title: 'Skynjari',
Expand Down
4 changes: 2 additions & 2 deletions pages/api/contact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export default async function handler(request:{ method: string, body: { email: s
await messageSchema.validate(message);
const mailgun = new Mailgun(FormData);
await mailgun.client({ username: 'api', key: process.env.MAILGUN_API_KEY! })
.messages.create('mg.codecowboys.io', {
.messages.create('mg.uebelacker.dev', {
from: message.email,
to: ['support@codecowboys.io'],
to: ['support@uebelacker.dev'],
subject: message.subject,
text: message.message,
});
Expand Down

0 comments on commit b9fc97c

Please sign in to comment.