This commit is contained in:
seb
2025-07-02 12:49:06 +02:00
commit edbd56f6a9
123 changed files with 32598 additions and 0 deletions

41
src/PrerenderProfile.js Normal file
View File

@@ -0,0 +1,41 @@
import React, { Component } from 'react';
import {
Container,
Box,
AppBar,
Toolbar
} from '@mui/material';
import { Logo, CategoryList } from './components/header/index.js';
class PrerenderProfile extends Component {
render() {
return (
<Box
sx={{
display: 'flex',
flexDirection: 'column',
minHeight: '100vh',
mb: 0,
pb: 0,
bgcolor: 'background.default'
}}
>
<AppBar
position="sticky"
color="primary"
elevation={0}
sx={{ zIndex: 1100 }}
>
<Toolbar sx={{ minHeight: 64 }}>
<Container maxWidth="lg" sx={{ display: 'flex', alignItems: 'center' }}>
<Logo />
</Container>
</Toolbar>
<CategoryList categoryId={209} activeCategoryId={null} />
</AppBar>
</Box>
);
}
}
export default PrerenderProfile;