Skip to content

Commit

Permalink
CORE-659 - rewrite templates to framer (#5808)
Browse files Browse the repository at this point in the history
closes: CORE-659
  • Loading branch information
jnsdls committed Dec 19, 2024
1 parent 7c40fda commit fa26eef
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 1,462 deletions.
3 changes: 3 additions & 0 deletions apps/dashboard/framer-rewrites.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ module.exports = [
"/community/startup-program",
// -- grants --
"/grant/superchain",
// -- templates --
"/templates",
"/templates/:template_slug",
];
6 changes: 6 additions & 0 deletions apps/dashboard/redirects.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,12 @@ async function redirects() {
destination: "/bounties",
permanent: false,
},
// redirect /template/<slug> to /templates/<slug>
{
source: "/template/:slug",
destination: "/templates/:slug",
permanent: false,
},
...legacyDashboardToTeamRedirects,
];
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

52 changes: 0 additions & 52 deletions apps/dashboard/src/components/shared/GeneralCta.tsx

This file was deleted.

6 changes: 0 additions & 6 deletions apps/dashboard/src/page-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ export enum PageId {
// marketing / growth pages
// ---------------------------------------------------------------------------

// thirdweb.com/templates
Templates = "templates-page",

// thirdweb.com/template/[templateId]
Template = "template-page",

// thirdweb.com/account-abstraction
SmartWalletLanding = "smart-wallet-landing",

Expand Down
Loading

0 comments on commit fa26eef

Please sign in to comment.