Skip to content

Commit

Permalink
Add Claude RTL project
Browse files Browse the repository at this point in the history
  • Loading branch information
gilhanan committed Nov 4, 2023
1 parent 8ff71d9 commit 46af128
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 4 deletions.
30 changes: 30 additions & 0 deletions public/images/projects/claude-rtl-dark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions public/images/projects/claude-rtl.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 75 additions & 4 deletions src/app/data/projects.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { Project } from "@shared/models";
import light from "@images/projects/chat-gpt-rtl.svg";
import dark from "@images/projects/chat-gpt-rtl-dark.svg";
import chatGptRtlLight from "@images/projects/chat-gpt-rtl.svg";
import chatGptRtlDark from "@images/projects/chat-gpt-rtl-dark.svg";
import claudeRtlLight from "@images/projects/claude-rtl.svg";
import claudeRtlDark from "@images/projects/claude-rtl-dark.svg";

export const projects: Project[] = [
{
Expand All @@ -10,8 +12,8 @@ export const projects: Project[] = [
category: "Chrome Extension",
repo: "https://github.com/gilhanan/chat-gpt-rtl",
images: {
light,
dark,
light: chatGptRtlLight,
dark: chatGptRtlDark,
},
description: (
<div className="flex flex-col gap-4">
Expand Down Expand Up @@ -72,4 +74,73 @@ export const projects: Project[] = [
</div>
),
},
{
id: "claude-rtl",
title: "Claude RTL",
url: "https://chrome.google.com/webstore/detail/claude-rtl/bogboalkhfnponhdoflinneddblhdfma",
category: "Chrome Extension",
repo: "https://github.com/gilhanan/claude-rtl",
images: {
light: claudeRtlLight,
dark: claudeRtlDark,
},
description: (
<div className="flex flex-col gap-4">
<div>
<p>
Claude auto right-to-left alignments for Arabic, Persian, Hebrew,
and more.
</p>
<p>
An open-source plugin that automatically identifies right-to-left
paragraphs and adjusts and arranges the text in real-time.
</p>
</div>
<div>
<h2 className="text-lg text-primary">⭐️ Features ⭐️</h2>
<ul>
<li className="flex gap-1">
<span>📝</span>
<span>
Automatically identifies RTL paragraphs and adjusts the
direction in real-time.
</span>
</li>
<li className="flex gap-1">
<span>⚙️</span>
<span>
User-friendly settings popup for configuring the enabling
functionality.
</span>
</li>
<li className="flex gap-1">
<span>🌍</span>
<span>
Supports the following RTL languages: Arabic, Persian, Hebrew,
and more.
</span>
</li>
</ul>
</div>
<div>
<h2 className="text-lg text-primary">💡 How to use 💡</h2>
<ol>
<li className="flex gap-1">
<span>1️⃣</span>
<span>Install this extension.</span>
</li>
<li className="flex gap-1">
<span>2️⃣</span>
<span>Open Claude discussion.</span>
</li>
<li className="flex gap-1">
<span>3️⃣</span>
<span>Enjoy chatting with RTL support!</span>
</li>
</ol>
</div>
<p>Enjoy! 🙏</p>
</div>
),
},
];

0 comments on commit 46af128

Please sign in to comment.