Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/features/sidebar/view/internal/sidebar/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import Image from "next/image"
import Link from "next/link"
import { Box, Typography, IconButton, Tooltip } from "@mui/material"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faPlus } from "@fortawesome/free-solid-svg-icons"
import { Box, Typography } from "@mui/material"
// import { Box, Typography, IconButton, Tooltip } from "@mui/material"
// import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
// import { faPlus } from "@fortawesome/free-solid-svg-icons"

const Header = () => {
const siteName = process.env.NEXT_PUBLIC_SHAPE_DOCS_TITLE
Expand Down Expand Up @@ -40,13 +41,13 @@ const Header = () => {
{siteName}
</Typography>
</Link>
<Tooltip title="New Project">
{/* <Tooltip title="New Project">
<Link href="/new">
<IconButton color="primary" size="small" aria-label="New Project">
<FontAwesomeIcon icon={faPlus} size="xs" style={{ aspectRatio: 1, padding: 2 }} />
</IconButton>
</Link>
</Tooltip>
</Tooltip> */}
</Box>
)
}
Expand Down