Merge pull request #739 from toeverything/feat/datacenter-published-search

feat: add nav bar to the public page
This commit is contained in:
JimmFly
2023-02-01 13:51:32 +08:00
committed by GitHub
7 changed files with 270 additions and 33 deletions

View File

@@ -0,0 +1,8 @@
import MuiBreadcrumbs from '@mui/material/Breadcrumbs';
import { styled } from '@/styles';
export const Breadcrumbs = styled(MuiBreadcrumbs)(({ theme }) => {
return {
color: theme.colors.popoverColor,
};
});