feat: add layout component

This commit is contained in:
rusconn
2022-03-24 01:37:16 +00:00
parent 673bb1aadd
commit 29247936cc
17 changed files with 466 additions and 15 deletions

View File

@@ -1,2 +1,3 @@
export * as emotion from "./emotion";
export * as mui from "./mui";
export * as site from "./site";

View File

@@ -1,3 +1,20 @@
import { createTheme } from "@mui/material";
export const theme = createTheme();
export const theme = createTheme({
palette: {
background: {
default: "#f0f3f8",
},
},
typography: {
htmlFontSize: 10,
fontSize: 8,
},
components: {
MuiButtonBase: {
defaultProps: {
disableRipple: true,
},
},
},
});

1
src/data/site.ts Normal file
View File

@@ -0,0 +1 @@
export const title = "DevToysWeb";