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

fix: removed eclipse theia #102

Merged
merged 2 commits into from
May 21, 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
2 changes: 1 addition & 1 deletion src/routes/extend/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import Visualstudiocode from '@icons-pack/svelte-simple-icons/src/components/Vis
<br class="hidden lg:inline-block">
</h1>
<p class="mb-8 leading-relaxed">
Eclipse Che provisions development environments, including IDEs. Any IDE that can run in a container and can be accessed through a Web UI will work with Eclipse Che. The IDEs that are pre-packaged with Che are Open Source VisualStudio Code, Eclipse Theia and JetBrains IDEs using JetBrains Projector.
Eclipse Che provisions development environments, including IDEs. Any IDE that can run in a container and can be accessed through a Web UI will work with Eclipse Che. The IDEs that are pre-packaged with Che are Open Source VisualStudio Code and JetBrains IDEs using JetBrains Projector.
</p>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 flex flex:col gap-10">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/features/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<h1 class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900 dark:text-white">IDEs are packaged and distributed as
<br class="hidden lg:inline-block">Linux Containers
</h1>
<p class="mb-8 leading-relaxed">IDEs run remotely, in a Kubernetes Pod, and are accessible from a browser. Currently IDEs packaged and included with Eclipse Che are VS Code, JetBrains and Eclipse Theia.</p>
<p class="mb-8 leading-relaxed">IDEs run remotely, in a Kubernetes Pod, and are accessible from a browser. Currently IDEs packaged and included with Eclipse Che are VS Code and JetBrains.</p>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6 flex flex-col flex-grow items-center justify-center align-middle gap-5 ">
<LinuxContainers size={200} />
Expand Down
22 changes: 3 additions & 19 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import { onMount } from 'svelte';
import VisualStudioCode from '@icons-pack/svelte-simple-icons/src/components/Visualstudiocode.svelte';
import Jetbrains from '@icons-pack/svelte-simple-icons/src/components/Jetbrains.svelte';
import EclipseIDE from '@icons-pack/svelte-simple-icons/src/components/Eclipseide.svelte';
import Try from '$lib/try/Try.svelte';
import { variables } from '$lib/variables';
import { pageTitle, pageDescription, pageUrl } from '$lib/stores';
Expand All @@ -14,8 +13,8 @@
$pageUrl = 'https://www.eclipse.org/che/';

let ideImages = [];
const darkImages = [`${variables.imagesPath}/ide-code-dark.png`, `${variables.imagesPath}/ide-pycharm-dark.png`, `${variables.imagesPath}/ide-theia-dark.png`]
const lightImages = [`${variables.imagesPath}/ide-code-light.png`, `${variables.imagesPath}/ide-pycharm-light.png`, `${variables.imagesPath}/ide-theia-light.png`]
const darkImages = [`${variables.imagesPath}/ide-code-dark.png`, `${variables.imagesPath}/ide-pycharm-dark.png`]
const lightImages = [`${variables.imagesPath}/ide-code-light.png`, `${variables.imagesPath}/ide-pycharm-light.png`]

let devfileInGithubImage;
let devfileImage;
Expand Down Expand Up @@ -218,7 +217,7 @@
Swap the IDE as you would change your sunglasses
</p>
</div>
<div class="flex flex-wrap -m-4">
<div class="flex flex-wrap -m-4 justify-center">
<div class="p-4 md:w-1/3">
<div class="flex rounded-lg h-full bg-gray-100 dark:bg-gray-800 bg-opacity-60 p-8 flex-col">
<div class="flex items-center mb-3">
Expand All @@ -242,21 +241,6 @@
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base">The IDEs for professional developers run with JetBrains Projector and deployed on Kubernetes.</p>

</div>
</div>
</div>
<div class="p-4 md:w-1/3">
<div class="flex rounded-lg h-full bg-gray-100 dark:bg-gray-800 bg-opacity-60 p-8 flex-col">
<div class="flex items-center mb-3">
<div class="w-8 h-8 mr-3 inline-flex items-center justify-center rounded-full text-gray-900 dark:text-gray-300 flex-shrink-0">
<EclipseIDE />
</div>
<h2 class="text-gray-900 dark:text-white text-lg title-font font-medium">Eclipse Theia</h2>
</div>
<div class="flex-grow">
<p class="leading-relaxed text-base">Built on top of the Theia IDE platform developed under the Eclipse Foundation.</p>

</div>
</div>
</div>
Expand Down
Binary file removed static/images-website/ide-theia-dark.png
Binary file not shown.
Binary file removed static/images-website/ide-theia-light.png
Binary file not shown.
Loading