mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 22:07:55 +00:00
15 lines
422 B
JavaScript
15 lines
422 B
JavaScript
|
|
import * as BS from 'react-bootstrap';
|
||
|
|
import { FaStar } from "react-icons/fa";
|
||
|
|
|
||
|
|
export default function Profile () {
|
||
|
|
return (
|
||
|
|
<BS.Card>
|
||
|
|
<BS.Card.Header>
|
||
|
|
<BS.Card.Title><FaStar className="mr-3" />Profile</BS.Card.Title>
|
||
|
|
</BS.Card.Header>
|
||
|
|
<BS.Card.Body>
|
||
|
|
WIP. Public profiles coming soon here!
|
||
|
|
</BS.Card.Body>
|
||
|
|
</BS.Card>
|
||
|
|
)
|
||
|
|
}
|