diff --git a/app/[locale]/opengraph-image.tsx b/app/[locale]/opengraph-image.tsx
index 85fc6ec..2e1ae89 100644
--- a/app/[locale]/opengraph-image.tsx
+++ b/app/[locale]/opengraph-image.tsx
@@ -118,6 +118,8 @@ export default async function Image() {
{/* Title */}
- MB Grid Solutions
+ MB Grid{" "}
+
+ Solutions
+
{/* Subtitle */}
- Energiekabelprojekte & Technische Beratung
-
- bis 110 kV
+ Energiekabelprojekte & Technische Beratung
+ bis 110 kV
diff --git a/app/[locale]/twitter-image.tsx b/app/[locale]/twitter-image.tsx
index 8d70b80..74128ef 100644
--- a/app/[locale]/twitter-image.tsx
+++ b/app/[locale]/twitter-image.tsx
@@ -118,6 +118,8 @@ export default async function Image() {
{/* Title */}
- MB Grid Solutions
+ MB Grid{" "}
+
+ Solutions
+
{/* Subtitle */}
- Energiekabelprojekte & Technische Beratung
-
- bis 110 kV
+ Energiekabelprojekte & Technische Beratung
+ bis 110 kV
diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts
index 1d1ffaa..28dc808 100644
--- a/sentry.edge.config.ts
+++ b/sentry.edge.config.ts
@@ -2,10 +2,15 @@ import * as Sentry from "@sentry/nextjs";
import { config } from "./lib/config";
if (config.errors.glitchtip.enabled) {
+ console.log("Initializing Sentry in Edge runtime...", {
+ environment: config.target || "production",
+ });
Sentry.init({
dsn: config.errors.glitchtip.dsn,
tracesSampleRate: 1.0,
- debug: config.isDevelopment,
+ debug: true, // Force debug for now to see why it's failing
environment: config.target || "production",
});
+} else {
+ console.warn("Sentry is DISABLED in Edge runtime (missing DSN)");
}