header and footer

This commit is contained in:
2026-04-04 13:34:48 +05:30
parent 177cc976b4
commit c3d233c41a
5 changed files with 162 additions and 34 deletions

View File

@@ -1,20 +1,12 @@
import * as React from "react";
import AppTheme from './shared-theme/AppTheme';
import CssBaseline from '@mui/material/CssBaseline';
import { Box, Typography } from '@mui/material';
import Footer from './Footer';
export default function Home(props: { disableCustomTheme?: boolean }) {
export default function Home() {
return (
<AppTheme {...props}>
<CssBaseline enableColorScheme />
<Box>
<Typography variant="h1" gutterBottom>
Welcome to Khata
</Typography>
</Box>
<Footer />
</AppTheme>
<Box sx={{ p: 4 }}>
<Typography variant="h1" gutterBottom>
Welcome to Khata
</Typography>
</Box>
);
}