diff --git a/README.md b/README.md index 21ee7bd..5b6f363 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # Slash -logo - **Slash** is an open source, self-hosted bookmarks and link sharing platform. It allows you to organize your links with tags, and share them with custom shortened URLs. Slash also supports team sharing of link libraries for easy collaboration. 🧩 Browser extension(v1.0.0) now available! - [Chrome Web Store](https://chrome.google.com/webstore/detail/slash/ebaiehmkammnacjadffpicipfckgeobg), [Firefox Add-on](https://addons.mozilla.org/firefox/addon/your-slash/) diff --git a/docs/assets/logo.png b/docs/assets/logo.png deleted file mode 100644 index 8a19e75..0000000 Binary files a/docs/assets/logo.png and /dev/null differ diff --git a/frontend/extension/assets/icon.png b/frontend/extension/assets/icon.png index 8a19e75..c513179 100644 Binary files a/frontend/extension/assets/icon.png and b/frontend/extension/assets/icon.png differ diff --git a/frontend/extension/package.json b/frontend/extension/package.json index 36da45d..8ea3b4d 100644 --- a/frontend/extension/package.json +++ b/frontend/extension/package.json @@ -1,7 +1,7 @@ { "name": "slash-extension", "displayName": "Slash", - "version": "1.0.5", + "version": "1.0.6", "description": "An open source, self-hosted bookmarks and link sharing platform. Save and share your links very easily.", "scripts": { "dev": "plasmo dev", diff --git a/frontend/extension/src/components/Logo.tsx b/frontend/extension/src/components/Logo.tsx index b3e3270..63e8d6d 100644 --- a/frontend/extension/src/components/Logo.tsx +++ b/frontend/extension/src/components/Logo.tsx @@ -1,12 +1,12 @@ import classNames from "classnames"; -import LogoBase64 from "data-base64:../../assets/icon.png"; +import Icon from "./Icon"; interface Props { className?: string; } const Logo = ({ className }: Props) => { - return ; + return ; }; export default Logo; diff --git a/frontend/web/index.html b/frontend/web/index.html index a21e333..9cd2ec8 100644 --- a/frontend/web/index.html +++ b/frontend/web/index.html @@ -2,7 +2,7 @@ - + diff --git a/frontend/web/public/logo.png b/frontend/web/public/logo.png deleted file mode 100644 index 8a19e75..0000000 Binary files a/frontend/web/public/logo.png and /dev/null differ diff --git a/frontend/web/public/logo.svg b/frontend/web/public/logo.svg new file mode 100644 index 0000000..2282387 --- /dev/null +++ b/frontend/web/public/logo.svg @@ -0,0 +1 @@ +frontend/web/public/logo.svg \ No newline at end of file diff --git a/frontend/web/src/components/Header.tsx b/frontend/web/src/components/Header.tsx index 556e28a..8f1bff5 100644 --- a/frontend/web/src/components/Header.tsx +++ b/frontend/web/src/components/Header.tsx @@ -33,7 +33,7 @@ const Header: React.FC = () => {
- + Slash {profile.plan === PlanType.PRO && ( diff --git a/frontend/web/src/pages/SignUp.tsx b/frontend/web/src/pages/SignUp.tsx index 70d098a..c14b075 100644 --- a/frontend/web/src/pages/SignUp.tsx +++ b/frontend/web/src/pages/SignUp.tsx @@ -3,6 +3,7 @@ import React, { FormEvent, useEffect, useState } from "react"; import { toast } from "react-hot-toast"; import { useTranslation } from "react-i18next"; import { Link } from "react-router-dom"; +import Icon from "@/components/Icon"; import { authServiceClient } from "@/grpcweb"; import useNavigateTo from "@/hooks/useNavigateTo"; import useUserStore from "@/stores/v1/user"; @@ -75,7 +76,7 @@ const SignUp: React.FC = () => {
- logo + Slash

{t("auth.create-your-account")}