Skip to content

Commit 85ea3e9

Browse files
authored
[UI] Update footer tech info and add a documentation link (#598)
1 parent b722c1b commit 85ea3e9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

web/client/src/library/components/ide/IDE.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ export function IDE(): JSX.Element {
149149
/>
150150
</SplitPane>
151151
)}
152-
<Divider />
153-
<div className="px-2 py-1 text-xs">Version: 0.0.1</div>
154152
<ModalSidebar
155153
show={isPlanOpen && isFalse(isClosingModal)}
156154
afterLeave={() => {

web/client/src/library/components/root/Root.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,11 @@ function Header(): JSX.Element {
4141
</div>
4242
<div>
4343
<ul className="flex items-center">
44-
<li className="px-2">Docs</li>
45-
<li className="px-2">GitHub</li>
44+
<li className="px-2">
45+
<a href="http://sqlmesh.readthedocs.io/en/stable/" target="_blank" rel="noopener noreferrer" className='hover:underline'>
46+
Documentation
47+
</a>
48+
</li>
4649
<li
4750
className={clsx(
4851
'p-2 cursor-pointer rounded-full hover:bg-theme-darker',
@@ -74,8 +77,7 @@ function Main({ children }: { children: React.ReactNode }): JSX.Element {
7477
function Footer(): JSX.Element {
7578
return (
7679
<footer className="px-2 py-1 text-xs flex justify-between">
77-
<small>{new Date().getFullYear()}</small>
78-
platform footer
80+
<small className='text-xs'>© {new Date().getFullYear()} <a href="http://https://tobikodata.com/" target="_blank" rel="noopener noreferrer" className='underline'>Tobiko, Inc.</a> All rights reserved.</small>
7981
</footer>
8082
)
8183
}

0 commit comments

Comments
 (0)