diff --git a/gui/src/components/Logo.tsx b/gui/src/components/Logo.tsx index a5be712e..7bb741e8 100644 --- a/gui/src/components/Logo.tsx +++ b/gui/src/components/Logo.tsx @@ -1,8 +1,20 @@ -import { Link, Typography } from '@mui/material'; +import { Help } from '@mui/icons-material'; +import { IconButton, Link, Typography } from '@mui/material'; import * as React from 'react'; +export const URL_DOCS = 'https://www.onnx-web.ai/docs'; +export const URL_REPO = 'https://github.com/ssube/onnx-web'; +export const NEW_WINDOW = '_blank'; + +export function openDocSite() { + window.open(URL_DOCS, NEW_WINDOW); +} + export function Logo() { return - ONNX Web + ONNX Web + + + ; }