diff --git a/public/index.html b/public/index.html index 975ff09..e9784fd 100755 --- a/public/index.html +++ b/public/index.html @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - Freeland + Scipaper diff --git a/src/components/LogoScipaper.tsx b/src/components/LogoScipaper.tsx new file mode 100755 index 0000000..8b0079f --- /dev/null +++ b/src/components/LogoScipaper.tsx @@ -0,0 +1,39 @@ +import React from "react"; +import classNames from "classnames"; +export type Props = { + className?: string; +}; + +const LogoScipaper = ({ className }: Props) => { + return ( +
+ + + + + + + + + +
+ ); +}; + +export default LogoScipaper; diff --git a/src/components/Logofreeland.tsx b/src/components/Logofreeland.tsx deleted file mode 100755 index 2fbcb29..0000000 --- a/src/components/Logofreeland.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import React from "react"; -import classNames from "classnames"; -export type Props = { - className?: string; -}; - -const Logofreeland = ({ className }: Props) => { - return ( -
- - - - - - - - - -
- ); -}; - -export default Logofreeland; diff --git a/src/components/parts/Header.tsx b/src/components/parts/Header.tsx index cae9eaf..9fbd384 100755 --- a/src/components/parts/Header.tsx +++ b/src/components/parts/Header.tsx @@ -5,7 +5,7 @@ import { useState, useTransition } from "react"; /* -------------------------------------------------------------------------- */ import ContextMenuAction from "../drop-down-menu/ContextMenuAction"; import ContextMenu from "../drop-down-menu/ContextMenu"; -import Logofreeland from "../Logofreeland"; +import LogoScipaper from "../LogoScipaper"; import { Button } from "../Button/Button"; import Avatar from "../Avatar"; import Navbar from "../Navbar"; @@ -47,13 +47,13 @@ const Header = () => { xl:gap-60 xl:px-16" > {/* Logo and Menu */} -
+
{/* Logo - start - className="w-7 sm:w-10 " /> */} -