Newer
Older
import React, { Component } from "react";
class PrivatePage extends Component {
render() {
return (
<div className="page-content" id="StartPage" style={{ height: '50vw', display: 'flex', justifyContent: 'center', backgroundColor: '#2f2f44' }}>
<div style={{ width: '50rem', height: '25rem', padding: '10rem', margin: '5rem', backgroundColor: 'rgba(0, 0, 0, 0.8)' }}>
<h3 style={{ color: 'white' }}>You successfully logged into your private page</h3>
<p style={{ color: 'white' }}> This is going to be your personal page.</p>
</div>
</div>
)
}
}
export default PrivatePage