Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add remix playground #160

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/assets/icons/remix-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/content/landing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import featureUnionAsset from '../assets/feature-union.svg';
import craLogo from '../assets/icons/cra-logo.svg';
import githubIcon from '../assets/icons/github.svg';
import nextLogo from '../assets/icons/next-logo.svg';
import remixLogo from '../assets/icons/remix-logo.svg';
import rocketIcon from '../assets/icons/rocket.svg';
import viteLogo from '../assets/icons/vite-logo.svg';
import {CustomBlock} from '../blocks/constants';
Expand Down Expand Up @@ -203,6 +204,20 @@ const typedLanding: CustomPageContent = {
title: 'Open Vite Playground',
},
},
{
title: 'Remix',
icon: remixLogo,
commands: [
'npx create-remix my-app --template gravity-ui/gravity-ui-remix-example',
'cd my-app',
'npm run dev',
],
button: {
href: 'https://codesandbox.io/p/devbox/gravityui-remix-template-2y5ykj',
target: '_blank',
title: 'Open Remix Playground',
},
},
],
},
{
Expand Down
Loading