Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 71b30ba8c5 |
@@ -118,6 +118,8 @@ export default async function Image() {
|
|||||||
{/* Title */}
|
{/* Title */}
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "row",
|
||||||
fontSize: "72px",
|
fontSize: "72px",
|
||||||
fontWeight: "900",
|
fontWeight: "900",
|
||||||
color: "#0f172a",
|
color: "#0f172a",
|
||||||
@@ -126,12 +128,19 @@ export default async function Image() {
|
|||||||
letterSpacing: "-0.02em",
|
letterSpacing: "-0.02em",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
MB Grid <span style={{ color: "#10b981" }}>Solutions</span>
|
MB Grid{" "}
|
||||||
|
<span
|
||||||
|
style={{ color: "#10b981", display: "flex", marginLeft: "16px" }}
|
||||||
|
>
|
||||||
|
Solutions
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Subtitle */}
|
{/* Subtitle */}
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
fontSize: "32px",
|
fontSize: "32px",
|
||||||
fontWeight: "500",
|
fontWeight: "500",
|
||||||
color: "#64748b",
|
color: "#64748b",
|
||||||
@@ -140,9 +149,8 @@ export default async function Image() {
|
|||||||
lineHeight: 1.4,
|
lineHeight: 1.4,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Energiekabelprojekte & Technische Beratung
|
<span>Energiekabelprojekte & Technische Beratung</span>
|
||||||
<br />
|
<span>bis 110 kV</span>
|
||||||
bis 110 kV
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -118,6 +118,8 @@ export default async function Image() {
|
|||||||
{/* Title */}
|
{/* Title */}
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "row",
|
||||||
fontSize: "72px",
|
fontSize: "72px",
|
||||||
fontWeight: "900",
|
fontWeight: "900",
|
||||||
color: "#0f172a",
|
color: "#0f172a",
|
||||||
@@ -126,12 +128,19 @@ export default async function Image() {
|
|||||||
letterSpacing: "-0.02em",
|
letterSpacing: "-0.02em",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
MB Grid <span style={{ color: "#10b981" }}>Solutions</span>
|
MB Grid{" "}
|
||||||
|
<span
|
||||||
|
style={{ color: "#10b981", display: "flex", marginLeft: "16px" }}
|
||||||
|
>
|
||||||
|
Solutions
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Subtitle */}
|
{/* Subtitle */}
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
fontSize: "32px",
|
fontSize: "32px",
|
||||||
fontWeight: "500",
|
fontWeight: "500",
|
||||||
color: "#64748b",
|
color: "#64748b",
|
||||||
@@ -140,9 +149,8 @@ export default async function Image() {
|
|||||||
lineHeight: 1.4,
|
lineHeight: 1.4,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Energiekabelprojekte & Technische Beratung
|
<span>Energiekabelprojekte & Technische Beratung</span>
|
||||||
<br />
|
<span>bis 110 kV</span>
|
||||||
bis 110 kV
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,15 @@ import * as Sentry from "@sentry/nextjs";
|
|||||||
import { config } from "./lib/config";
|
import { config } from "./lib/config";
|
||||||
|
|
||||||
if (config.errors.glitchtip.enabled) {
|
if (config.errors.glitchtip.enabled) {
|
||||||
|
console.log("Initializing Sentry in Edge runtime...", {
|
||||||
|
environment: config.target || "production",
|
||||||
|
});
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: config.errors.glitchtip.dsn,
|
dsn: config.errors.glitchtip.dsn,
|
||||||
tracesSampleRate: 1.0,
|
tracesSampleRate: 1.0,
|
||||||
debug: config.isDevelopment,
|
debug: true, // Force debug for now to see why it's failing
|
||||||
environment: config.target || "production",
|
environment: config.target || "production",
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
console.warn("Sentry is DISABLED in Edge runtime (missing DSN)");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user