Skip to content

Commit

Permalink
NEOS-1514: update broken images (#2785)
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova authored Oct 9, 2024
1 parent 5852b1c commit 4baf4f7
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 361 deletions.
19 changes: 12 additions & 7 deletions frontend/apps/web/app/(mgmt)/[account]/new/job/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ export default function NewJob({ params }: PageProps): ReactElement {
icon: <SymbolIcon />,
type: 'data-sync',
experimental: false,
lightModeimage: '/images/jobsynclight.svg',
darkModeImage: '/images/prodsync-dark.svg',
lightModeimage:
'https://assets.nucleuscloud.com/neosync/app/jobsynclight.svg',
darkModeImage:
'https://assets.nucleuscloud.com/neosync/app/prodsync-dark.svg',
},
{
name: 'Data Generation',
Expand All @@ -71,8 +73,10 @@ export default function NewJob({ params }: PageProps): ReactElement {
icon: <AiOutlineExperiment />,
type: 'generate-table',
experimental: false,
lightModeimage: '/images/gen-light.svg',
darkModeImage: '/images/datagen-dark.svg',
lightModeimage:
'https://assets.nucleuscloud.com/neosync/app/gen-light.svg',
darkModeImage:
'https://assets.nucleuscloud.com/neosync/app/datagen-dark.svg',
},
{
name: 'AI Data Generation',
Expand All @@ -81,8 +85,9 @@ export default function NewJob({ params }: PageProps): ReactElement {
icon: <MagicWandIcon />,
type: 'ai-generate-table',
experimental: true,
lightModeimage: '/images/aigen.svg',
darkModeImage: '/images/aigen-dark.svg',
lightModeimage: 'https://assets.nucleuscloud.com/neosync/app/aigen.svg',
darkModeImage:
'https://assets.nucleuscloud.com/neosync/app/aigen-dark.svg',
},
] as const;

Expand Down Expand Up @@ -122,7 +127,7 @@ export default function NewJob({ params }: PageProps): ReactElement {
)}
onClick={() => handleJobSelection(jd.type, jd.href)}
>
<CardHeader className=" w-[275px] relative">
<CardHeader className=" w-[300px] relative">
<div className="flex flex-col items-center text-left">
<div className="relative">
<Image
Expand Down
46 changes: 0 additions & 46 deletions frontend/apps/web/public/images/aigen-dark.svg

This file was deleted.

46 changes: 0 additions & 46 deletions frontend/apps/web/public/images/aigen.svg

This file was deleted.

64 changes: 0 additions & 64 deletions frontend/apps/web/public/images/datagen-dark.svg

This file was deleted.

64 changes: 0 additions & 64 deletions frontend/apps/web/public/images/gen-light.svg

This file was deleted.

67 changes: 0 additions & 67 deletions frontend/apps/web/public/images/jobsynclight.svg

This file was deleted.

67 changes: 0 additions & 67 deletions frontend/apps/web/public/images/prodsync-dark.svg

This file was deleted.

0 comments on commit 4baf4f7

Please sign in to comment.