Skip to content

Commit

Permalink
chore: add User info component nkowaokwu#619
Browse files Browse the repository at this point in the history
  • Loading branch information
davydocsurg authored and IfyNdu committed Aug 16, 2023
1 parent 1b35a15 commit a4050fe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/pages/components/UserInformation/UserInfo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Heading } from '@chakra-ui/react';
import React from 'react';
<<<<<<< HEAD

const UserInfo = () => (
<div className="w-full lg:text-left mt-6">
Expand All @@ -8,6 +9,19 @@ const UserInfo = () => (
<p>Email: [email protected]</p>
<p>Total Daily Usage: 54</p>
</div>
=======
import Card from '../Card';

const UserInfo = () => (
<Card
title="User Information"
description="This is your profile information"
icon="👤"
tooltipLabel="User Information"
>
<Heading as="h2">Profile</Heading>
</Card>
>>>>>>> 0bc60d0 (chore: add User info component #619)
);

export default UserInfo;

0 comments on commit a4050fe

Please sign in to comment.