Frank branding tweaks (#1235)
* Naming tweaks * Update heading font to be owners * Update app icon * Update Tauri App title * Fix sign in page (#1232) * Change to Zoo Modeling App, CI fixes (#1238) * Replace website urls for dl.zoo.dev --------- Co-authored-by: Pierre Jacquier <pierrejacquier39@gmail.com>
This commit is contained in:
@ -8,6 +8,11 @@ import { useGlobalStateContext } from 'hooks/useGlobalStateContext'
|
||||
import { APP_NAME } from 'lib/constants'
|
||||
|
||||
const SignIn = () => {
|
||||
const getLogoTheme = () =>
|
||||
theme === Themes.Light ||
|
||||
(theme === Themes.System && getSystemTheme() === Themes.Light)
|
||||
? '-dark'
|
||||
: ''
|
||||
const {
|
||||
auth: { send },
|
||||
settings: {
|
||||
@ -35,15 +40,10 @@ const SignIn = () => {
|
||||
<div className="max-w-2xl mx-auto">
|
||||
<div>
|
||||
<img
|
||||
src={`/kittycad-logomark${
|
||||
appliedTheme === Themes.Dark ? '-light' : ''
|
||||
}.svg`}
|
||||
alt="KittyCAD"
|
||||
src={`/zma-logomark${getLogoTheme()}.svg`}
|
||||
alt="Zoo Modeling App"
|
||||
className="w-48 inline-block"
|
||||
/>
|
||||
<span className="text-3xl leading-none w-auto inline-block align-middle ml-2">
|
||||
Modeling App
|
||||
</span>
|
||||
</div>
|
||||
<h1 className="font-bold text-2xl mt-12 mb-6">
|
||||
Sign in to get started with the {APP_NAME}
|
||||
|
Reference in New Issue
Block a user