Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 42 additions & 14 deletions client/src/pages/ReturningUser.jsx
Original file line number Diff line number Diff line change
@@ -1,22 +1,50 @@
import React, { useState } from 'react';

import ReadyEvents from '../components/ReadyEvents';
import { Box, Typography } from '@mui/material';

const ReturningUser = (props) => {
const [returningUser] = useState(true);
const [returningUser] = useState(true);

return (
<div className="flex-container">
<div className="returning">
<div className="returning-headers">
<h3>Welcome Back!</h3>
<h4>We're happy to see you</h4>
<ReadyEvents returningUser={returningUser}/>
</div>
</div>
</div>
)
return (
<Box
sx={{
display: 'flex',
flexDirection: 'column',
height: '100%',
width: '100%',
}}
>
<Box>
<Typography
variant="h3"
sx={{
fontSize: '39.2px',
fontWeight: 900,
textTransform: 'uppercase',
letterSpacing: '-0.7px',
fontFamily:
'"alisoregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',
}}
>
Welcome Back!
</Typography>
<Typography
variant="h4"
sx={{
fontSize: '28px',
fontWeight: 800,
textTransform: 'uppercase',
letterSpacing: '-0.7px',
fontFamily:
'"alisoregular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',
}}
>
We're happy to see you
</Typography>
<ReadyEvents returningUser={returningUser} />
</Box>
</Box>
);
};

export default ReturningUser;

Loading