-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEAR-130 add some basic patterns, insight summary
- Loading branch information
1 parent
1e5af5c
commit ee9e5db
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use client'; | ||
|
||
import { Card, CardContent } from '@components/ui/Card/Card'; | ||
|
||
export default function InsightsSummary() { | ||
return ( | ||
<Card> | ||
<CardContent> | ||
<div className="flex w-full items-start gap-2 text-sm"> | ||
<div className="grid gap-2"> | ||
<div className="flex items-center gap-2"> | ||
<p className="font-semibold">Know Your Happiness Patterns</p> | ||
</div> | ||
<div className="flex items-center text-xs font-light">happiness down, productivity down</div> | ||
<div className="flex items-center text-xs font-light">most happiness influencing worktype..</div> | ||
<div className="flex items-center text-xs font-light">correlations..</div> | ||
</div> | ||
</div> | ||
</CardContent>{' '} | ||
</Card> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters