update title
This commit is contained in:
parent
6e871dcf20
commit
6f69c7f4a7
|
@ -9,7 +9,7 @@
|
|||
/>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite + React + TS + Material UI</title>
|
||||
<title>Nofated • Home</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
|
|
@ -22,7 +22,7 @@ export default function App() {
|
|||
<Container maxWidth="sm">
|
||||
<Box sx={{ my: 4 }}>
|
||||
<Typography variant="h4" component="h1" gutterBottom>
|
||||
Material UI Vite.js example in TypeScript
|
||||
Nofated
|
||||
</Typography>
|
||||
<ProTip />
|
||||
<Copyright />
|
||||
|
|
|
@ -52,7 +52,7 @@ export default function StickyFooter() {
|
|||
>
|
||||
<Container maxWidth="sm">
|
||||
<Typography variant="body1">
|
||||
My sticky footer can be found here.
|
||||
Made by Nofated. 萌 ICP 备 20230721 号。
|
||||
</Typography>
|
||||
<Copyright />
|
||||
</Container>
|
|
@ -4,12 +4,14 @@ import { ThemeProvider } from '@emotion/react';
|
|||
import { CssBaseline } from '@mui/material';
|
||||
import theme from './theme';
|
||||
import App from './App';
|
||||
import StickyFooter from './StickyFooter';
|
||||
|
||||
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
||||
<React.StrictMode>
|
||||
<ThemeProvider theme={theme}>
|
||||
<CssBaseline />
|
||||
<App />
|
||||
<StickyFooter />
|
||||
</ThemeProvider>
|
||||
</React.StrictMode>,
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue