mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
style updates
- logo - primary colors - text changes
This commit is contained in:
parent
5d74e86222
commit
6136406506
30 changed files with 31066 additions and 6214 deletions
|
|
@ -68,7 +68,7 @@ export default function LoginForm() {
|
|||
<Form>
|
||||
<div className={styles.header}>
|
||||
<Icon icon={<Logo />} size="xlarge" className={styles.icon} />
|
||||
<h1 className="center">umami</h1>
|
||||
<h1 className="center">alpineUX</h1>
|
||||
</div>
|
||||
<FormRow>
|
||||
<label htmlFor="username">
|
||||
|
|
|
|||
|
|
@ -17,11 +17,11 @@ export default function Footer() {
|
|||
<div className="col-12 col-md-4">
|
||||
<FormattedMessage
|
||||
id="message.powered-by"
|
||||
defaultMessage="Powered by {name}"
|
||||
defaultMessage="Powered by alpineUX analytics"
|
||||
values={{
|
||||
name: (
|
||||
<Link href="https://umami.is">
|
||||
<b>umami</b>
|
||||
<Link href="https://alpineux.com">
|
||||
<b>alpineUX</b>
|
||||
</Link>
|
||||
),
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
import React, { useState } from 'react';
|
||||
import Image from 'next/image';
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
import { useSelector } from 'react-redux';
|
||||
import classNames from 'classnames';
|
||||
import Link from 'components/common/Link';
|
||||
import Icon from 'components/common/Icon';
|
||||
import LanguageButton from 'components/settings/LanguageButton';
|
||||
import ThemeButton from 'components/settings/ThemeButton';
|
||||
import UpdateNotice from 'components/common/UpdateNotice';
|
||||
import UserButton from 'components/settings/UserButton';
|
||||
import Button from 'components/common/Button';
|
||||
import Logo from 'assets/logo.svg';
|
||||
import Logo from 'public/alpine-social.png';
|
||||
import styles from './Header.module.css';
|
||||
import useLocale from 'hooks/useLocale';
|
||||
import XMark from 'assets/xmark.svg';
|
||||
|
|
@ -31,8 +31,11 @@ export default function Header() {
|
|||
<div className={styles.nav}>
|
||||
<div className="">
|
||||
<div className={styles.title}>
|
||||
<Icon icon={<Logo />} size="large" className={styles.logo} />
|
||||
<Link href={user ? '/' : 'https://umami.is'}>umami</Link>
|
||||
{/*<Icon icon={<Logo />} size="large" className={styles.logo} />*/}
|
||||
<Image src={Logo} width="40px" height="40px" alt="alpineUX logo" />
|
||||
<span style={{ marginLeft: '10px', fontFamily: 'Helvetica Neue' }}>
|
||||
<Link href={user ? '/' : 'https://alpineux.com'}>analytics</Link>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<Button
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ export default function Layout({ title, children, header = true, footer = true }
|
|||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>umami{title && ` - ${title}`}</title>
|
||||
<title>alpineUX{title && ` - ${title}`}</title>
|
||||
</Head>
|
||||
|
||||
{header && <Header />}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue