-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1008 from tensorlakeai/chore/changes
feat: cleanup and remove other namespaces support except default
- Loading branch information
Showing
26 changed files
with
890 additions
and
1,305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
import { Box, Typography } from "@mui/material"; | ||
import Link from "@mui/material/Link"; | ||
|
||
const Footer = () => { | ||
export function Footer() { | ||
const currentYear = new Date().getFullYear(); | ||
|
||
return ( | ||
<Box py={2} textAlign={"center"}> | ||
<Box py={2} textAlign="center"> | ||
<Typography variant="caption" color="CaptionText" align="center"> | ||
{"Copyright © "} | ||
Copyright © | ||
<Link color="inherit" href="https://tensorlake.ai/"> | ||
Tensorlake | ||
</Link>{" "} | ||
{new Date().getFullYear()} | ||
{"."} | ||
</Link> | ||
{` ${currentYear}.`} | ||
</Typography> | ||
</Box> | ||
); | ||
}; | ||
} | ||
|
||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.