Skip to content

Commit

Permalink
change links
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ivashchuk committed Apr 3, 2024
1 parent dcc1aed commit 3acc6c3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
11 changes: 6 additions & 5 deletions src/app/(landing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ export default async function Home() {
<Link href="/login">
<Button>Try demo</Button>
</Link>
<Button variant="outline">
{" "}
<SiGithub className="mr-2 h-4 w-4" /> Code on GitHub
</Button>
<Link target="_blank" href="https://github.com/d-ivashchuk/cascade">
<Button variant="outline">
<SiGithub className="mr-2 h-4 w-4" /> Code on GitHub
</Button>
</Link>
</div>
</div>

Expand All @@ -79,7 +80,7 @@ export default async function Home() {
</TechCard>
<TechCard>
<SiTailwindcss className="h-14 w-14 p-2" />
<p>Tailwind + Shadcn/ui</p>
<p>Shadcn/ui</p>
</TechCard>
<TechCard>
<SiPosthog className="h-14 w-14 p-2" />
Expand Down

0 comments on commit 3acc6c3

Please sign in to comment.