diff --git a/next.config.mjs b/next.config.mjs
index 4dfd45c..7cf7942 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -19,8 +19,8 @@ export default withSentryConfig(
// Suppresses source map uploading logs during build
silent: true,
- org: "d-ivashchuk",
- project: "cascade",
+ org: process.env.SENTRY_ORG,
+ project: process.env.SENTRY_PROJECT,
},
{
// For all available options, see:
diff --git a/sentry.client.config.ts b/sentry.client.config.ts
index 7f58c78..7ab127e 100644
--- a/sentry.client.config.ts
+++ b/sentry.client.config.ts
@@ -5,7 +5,7 @@
import * as Sentry from "@sentry/nextjs";
Sentry.init({
- dsn: "https://fe53cc68359291c26af26b5705c13c4f@o4506388280180736.ingest.us.sentry.io/4506978350399488",
+ dsn: process.env.SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,
diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts
index 0122e52..e71d66b 100644
--- a/sentry.edge.config.ts
+++ b/sentry.edge.config.ts
@@ -6,7 +6,7 @@
import * as Sentry from "@sentry/nextjs";
Sentry.init({
- dsn: "https://fe53cc68359291c26af26b5705c13c4f@o4506388280180736.ingest.us.sentry.io/4506978350399488",
+ dsn: process.env.SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,
diff --git a/sentry.server.config.ts b/sentry.server.config.ts
index 273ca6f..d126aaf 100644
--- a/sentry.server.config.ts
+++ b/sentry.server.config.ts
@@ -6,7 +6,7 @@ import * as Sentry from "@sentry/nextjs";
import { db } from "~/server/db";
Sentry.init({
- dsn: "https://fe53cc68359291c26af26b5705c13c4f@o4506388280180736.ingest.us.sentry.io/4506978350399488",
+ dsn: process.env.SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1,
diff --git a/src/app/(landing)/page.tsx b/src/app/(landing)/page.tsx
index 33d2d23..b7de84a 100644
--- a/src/app/(landing)/page.tsx
+++ b/src/app/(landing)/page.tsx
@@ -49,10 +49,11 @@ export default async function Home() {
-
+
+
+
@@ -79,7 +80,7 @@ export default async function Home() {
- Tailwind + Shadcn/ui
+ Shadcn/ui