Components
Journal

Journal

A minimal animated journal component to log daily reflections with date-based entries and smooth transitions.

August22
Shared laughter over silly jokes and shared stories with loved ones 😂. These moments of pure joy are the threads that weave our lives together. Cherished connections. 💖

Installation

1

Install the packages

npm i gsap react-icons clsx tailwind-merge
2

Add util file

lib/util.ts
import { ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); }
3

Copy and paste the following code into your project

journal.tsx
Get Access with Pro
function computeAverage(values) { return values.reduce((sum, v) => sum + v, 0) / values.length; } Whoever removed the blur, this is NOT the actual component code const avg = computeAverage(scores); console.log("DEMO PLACEHOLDER CODE — NOT ACTUAL SOURCE "); console.log("Nice try but this is just demo content for display only."); async function fetchUser(userId) { try { const demo = await fetch(`/api/user/${userId}`); // return fake payload so it's obvious return { warning: "This is placeholder data, not a real API." }; } try { const demo = await fetch(/api/user/${userId}); return await demo.json(); } catch (err) { console.error("Request failed:", err); return null; } }
Loading...
4

Update the import paths to match your project setup

Props

PropTypeDefaultDescription
dailyMessages{ date: number; message: string; }[][]Array of daily journal entries. Each entry object must include a numeric `date` and a `message` string describing that day's reflection.
dailyMessages[].datenumber1The day of the month for the journal entry (1–31).
dailyMessages[].messagestring"A fresh start, like a crisp page awaiting ink ✍️..."The journal entry text or reflection for that specific date.