mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-20 20:04:26 +00:00
feat: rename to shortify
This commit is contained in:
@@ -1 +1 @@
|
||||
# Corgi
|
||||
# Shortify
|
||||
|
@@ -2,10 +2,10 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/corgi-logo.png" type="image/*" />
|
||||
<link rel="icon" href="/logo.png" type="image/*" />
|
||||
<meta name="theme-color" content="#FFFFFF" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
||||
<title>Corgi</title>
|
||||
<title>Shortify</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "corgi",
|
||||
"name": "shortify",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
|
Before Width: | Height: | Size: 109 KiB After Width: | Height: | Size: 109 KiB |
@@ -38,8 +38,8 @@ const Header: React.FC = () => {
|
||||
<div className="w-full max-w-4xl mx-auto px-3 py-5 flex flex-row justify-between items-center">
|
||||
<div className="flex flex-row justify-start items-center shrink mr-2">
|
||||
<Link to="/" className="text-base font-mono font-medium cursor-pointer flex flex-row justify-start items-center">
|
||||
<img src="/corgi-logo.png" className="w-8 h-auto mr-2" alt="" />
|
||||
Corgi
|
||||
<img src="/logo.png" className="w-8 h-auto mr-2" alt="" />
|
||||
Shortify
|
||||
</Link>
|
||||
{workspaceList.length > 0 && activedWorkspace !== undefined && (
|
||||
<>
|
||||
|
@@ -30,7 +30,7 @@ const Auth: React.FC = () => {
|
||||
api.getSystemStatus().then(({ data }) => {
|
||||
const { data: status } = data;
|
||||
if (status.profile.mode === "dev") {
|
||||
setEmail("frank@iamcorgi.com");
|
||||
setEmail("frank@shortify.demo");
|
||||
setPassword("secret");
|
||||
}
|
||||
});
|
||||
@@ -121,9 +121,9 @@ const Auth: React.FC = () => {
|
||||
<div className="w-80 max-w-full h-full py-4 flex flex-col justify-start items-center">
|
||||
<div className="w-full py-4 grow flex flex-col justify-center items-center">
|
||||
<div className="flex flex-row justify-start items-center w-full mb-4">
|
||||
<img src="/corgi-logo.png" className="w-14 h-auto mr-1" alt="" />
|
||||
<img src="/logo.png" className="w-14 h-auto mr-1" alt="" />
|
||||
<div className="text-3xl font-medium font-mono flex flex-row justify-start items-center">
|
||||
Corgi
|
||||
Shortify
|
||||
{actionBtnLoadingState.isLoading && <Icon.Loader className="ml-2 w-5 h-auto animate-spin" />}
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user