Skip to content

Commit 5747bfa

Browse files
authored
Merge branch 'main' into yash/ref-constructor-params
2 parents b9b1001 + 0aa2416 commit 5747bfa

File tree

384 files changed

+12623
-13174
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

384 files changed

+12623
-13174
lines changed

.changeset/blue-bees-ring.md

Lines changed: 5 additions & 0 deletions

.changeset/ninety-foxes-refuse.md

Lines changed: 5 additions & 0 deletions

.changeset/odd-coats-cheer.md

Lines changed: 22 additions & 0 deletions

.changeset/silent-hats-melt.md

Lines changed: 5 additions & 0 deletions

.changeset/strong-beans-pump.md

Lines changed: 5 additions & 0 deletions

.changeset/stupid-buses-wink.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

.changeset/wild-games-vanish.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ packages/tw-tsconfig/ @jnsdls @joaquim-verges
1717

1818
# apps
1919
apps/ @jnsdls @joaquim-verges
20-
apps/dashboard/ @jnsdls @MananTank @joaquim-verges
21-
apps/playground-web/ @joaquim-verges @gregfromstl @jnsdls @joaquim-verges
22-
apps/wallet-ui/ @gregfromstl @jnsdls @joaquim-verges @MananTank
23-
apps/portal/ @gregfromstl @jnsdls @joaquim-verges @MananTank
20+
apps/dashboard/ @jnsdls @MananTank @joaquim-verges @jakubkrehel
21+
apps/playground-web/ @joaquim-verges @gregfromstl @jnsdls @joaquim-verges @jakubkrehel
22+
apps/wallet-ui/ @gregfromstl @jnsdls @joaquim-verges @MananTank @jakubkrehel
23+
apps/portal/ @thirdweb-dev/product @thirdweb-dev/platform @thirdweb-dev/infra
2424

2525
# .github folder + .changeset + turbo config is owned by jonas for now
2626
scripts/ @jnsdls @joaquim-verges

apps/dashboard/framer-rewrites.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ module.exports = [
55
"/pricing",
66
// -- product landing pages --
77
// -- connect
8+
"/connect",
89
"/connect/sign-in",
10+
// -- nebula
911
"/nebula",
12+
// --insight
13+
"/insight",
1014
// -- contracts
15+
"/contracts",
1116
"/contracts/modular-contracts",
1217
"/contracts/explore",
1318
"/contracts/deployment-tool",
@@ -20,4 +25,7 @@ module.exports = [
2025
"/solutions/ecosystem",
2126
// -- campaigns --
2227
"/unlimited-wallets",
28+
// -- TPP --
29+
"/trusted-partner-program",
30+
"/trusted-partner-program/:partner_slug",
2331
];

apps/dashboard/next-sitemap.config.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,14 @@ module.exports = {
4848
policies: [
4949
{
5050
userAgent: "*",
51-
[process.env.VERCEL_ENV !== "preview" &&
52-
process.env.VERCEL_ENV !== "development"
53-
? "allow"
54-
: "disallow"]: "/",
51+
// allow all if production
52+
allow: process.env.VERCEL_ENV === "production" ? ["/"] : [],
53+
// disallow all if not production
54+
disallow:
55+
process.env.VERCEL_ENV !== "production"
56+
? ["/"]
57+
: // disallow `/team` and `/team/*` if production
58+
["/team", "/team/*"],
5559
},
5660
],
5761
},

0 commit comments

Comments
 (0)