-
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.
- Loading branch information
1 parent
4749805
commit f433a40
Showing
5 changed files
with
28 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
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,23 @@ | ||
import WorkTile from '@/components/WorkTile' | ||
import MasonryWrapper from '@/partials/MasonryWrapper' | ||
import thankfulMain from './images/thank-main.jpg' | ||
import thankfulVideo from './images/thank.mp4' | ||
|
||
const Thankful = () => { | ||
return ( | ||
<WorkTile | ||
title="Simple gratitude journal" | ||
className="bg-amber-50 dark:bg-transparent" | ||
text="This app concept aims to find a simple, lean, and nice gratitude journaling experience." | ||
> | ||
<MasonryWrapper> | ||
<img src={thankfulMain} className="mb-4" /> | ||
<video loop autoPlay playsInline className="border-none"> | ||
<source src={thankfulVideo} type="video/mp4"></source> | ||
</video> | ||
</MasonryWrapper> | ||
</WorkTile> | ||
) | ||
} | ||
|
||
export default Thankful |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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