-
Notifications
You must be signed in to change notification settings - Fork 3k
[WEB-5404] chore: update next images with html default images #8101
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
Changes from all commits
ceeef40
bbceb31
7d1b40c
e04bd86
4ff1362
61ddf28
3b0ab0c
4864478
19f3970
507f39f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,4 +1,3 @@ | ||||||
| import Image from "next/image"; | ||||||
| import { useTheme } from "next-themes"; | ||||||
| import LogoSpinnerDark from "@/app/assets/images/logo-spinner-dark.gif?url"; | ||||||
| import LogoSpinnerLight from "@/app/assets/images/logo-spinner-light.gif?url"; | ||||||
|
|
@@ -10,7 +9,7 @@ export const LogoSpinner = () => { | |||||
|
|
||||||
| return ( | ||||||
| <div className="flex items-center justify-center"> | ||||||
| <Image src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | ||||||
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | ||||||
|
||||||
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | |
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11 object-contain" /> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,5 @@ | ||||||
| "use client"; | ||||||
|
|
||||||
| import Image from "next/image"; | ||||||
| import Link from "next/link"; | ||||||
| import { Button } from "@plane/propel/button"; | ||||||
| // assets | ||||||
|
|
@@ -11,7 +10,7 @@ export const InstanceNotReady: React.FC = () => ( | |||||
| <div className="w-auto max-w-2xl relative space-y-8 py-10"> | ||||||
| <div className="relative flex flex-col justify-center items-center space-y-4"> | ||||||
| <h1 className="text-3xl font-bold pb-3">Welcome aboard Plane!</h1> | ||||||
| <Image src={PlaneTakeOffImage} alt="Plane Logo" /> | ||||||
| <img src={PlaneTakeOffImage} alt="Plane Logo" /> | ||||||
|
||||||
| <img src={PlaneTakeOffImage} alt="Plane Logo" /> | |
| <img src={PlaneTakeOffImage} alt="Plane Logo" className="w-full h-full object-contain" /> |
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,5 +1,5 @@ | ||||||
| "use client"; | ||||||
| import Image from "next/image"; | ||||||
|
|
||||||
| import { useTheme } from "next-themes"; | ||||||
| // assets | ||||||
| import LogoSpinnerDark from "@/app/assets/images/logo-spinner-dark.gif?url"; | ||||||
|
|
@@ -12,7 +12,7 @@ export const LogoSpinner = () => { | |||||
|
|
||||||
| return ( | ||||||
| <div className="flex items-center justify-center"> | ||||||
| <Image src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | ||||||
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | ||||||
|
||||||
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11" /> | |
| <img src={logoSrc} alt="logo" className="h-6 w-auto sm:h-11 object-contain" /> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,5 @@ | ||||||
| "use client"; | ||||||
|
|
||||||
| import Image from "next/image"; | ||||||
| import { useTheme } from "next-themes"; | ||||||
| import { Button } from "@plane/propel/button"; | ||||||
| // assets | ||||||
|
|
@@ -20,7 +19,7 @@ export const InstanceFailureView: React.FC = () => { | |||||
| <div className="relative h-screen overflow-x-hidden overflow-y-auto container px-5 mx-auto flex justify-center items-center"> | ||||||
| <div className="w-auto max-w-2xl relative space-y-8 py-10"> | ||||||
| <div className="relative flex flex-col justify-center items-center space-y-4"> | ||||||
| <Image src={instanceImage} alt="Plane instance failure image" /> | ||||||
| <img src={instanceImage} alt="Plane instance failure image" /> | ||||||
|
||||||
| <img src={instanceImage} alt="Plane instance failure image" /> | |
| <img src={instanceImage} alt="Plane instance failure image" className="w-full max-h-64 object-contain" /> |
Uh oh!
There was an error while loading. Please reload this page.