Skip to content

Commit 2348254

Browse files
authored
Feature/Remove TT assets (#321)
Removed logo and replace favicon with a placeholder. <img width="1124" alt="Screenshot 2025-01-17 at 2 11 14 PM" src="https://github.com/user-attachments/assets/c68dd1f9-7e9d-4494-929a-93bbd0823df8" />
2 parents 2b45ffb + f603a5b commit 2348254

File tree

8 files changed

+5
-77
lines changed

8 files changed

+5
-77
lines changed

favicon.ico

0 Bytes
Binary file not shown.
4.75 KB
Loading
57.9 KB
Loading

public/favicon/favicon-32x32.png

-10 Bytes
Loading

public/favicon/favicon.svg

Lines changed: 3 additions & 7 deletions
Loading

src/components/Layout.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
//
33
// SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
44

5-
import { Link, Outlet } from 'react-router-dom';
5+
import { Outlet } from 'react-router-dom';
66
import { Classes, Tooltip } from '@blueprintjs/core';
77
import { Helmet } from 'react-helmet-async';
88
import { useAtomValue } from 'jotai';
99
import { ToastContainer, cssTransition } from 'react-toastify';
1010
import 'react-toastify/dist/ReactToastify.min.css';
1111
import classNames from 'classnames';
12-
import TenstorrentLogo from './TenstorrentLogo';
13-
import ROUTES from '../definitions/routes';
1412
import { activePerformanceTraceAtom, activeReportAtom } from '../store/app';
1513
import MainNavigation from './MainNavigation';
1614

@@ -40,13 +38,7 @@ function Layout() {
4038

4139
<header className='app-header'>
4240
<nav className='nav-container'>
43-
<Link
44-
className='tt-logo'
45-
to={ROUTES.HOME}
46-
>
47-
<TenstorrentLogo />
48-
<p className='version'>v{appVersion}</p>
49-
</Link>
41+
<p className='version'>v{appVersion}</p>
5042
<MainNavigation />
5143
</nav>
5244

src/components/TenstorrentLogo.tsx

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/scss/_layout.scss

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,6 @@
1111
display: flex;
1212
align-items: center;
1313
justify-content: space-between;
14-
15-
.tt-logo {
16-
// TODO: Sort logo viewbox so we don't have to do this
17-
margin: -30px;
18-
display: flex;
19-
align-items: center;
20-
text-decoration: none;
21-
22-
p {
23-
margin: 0;
24-
color: $tt-white;
25-
text-decoration: none;
26-
margin-left: -15px;
27-
margin-top: 10px;
28-
}
29-
}
30-
31-
.title {
32-
font-size: 12px;
33-
34-
&.is-lengthy {
35-
text-overflow: ellipsis;
36-
overflow: hidden;
37-
white-space: nowrap;
38-
max-width: 250px;
39-
}
40-
}
4114
}
4215

4316
.current-data {

0 commit comments

Comments
 (0)