Skip to content

Instantly share code, notes, and snippets.

View thepratikguptaa's full-sized avatar
:shipit:
Learning Everyday

Pratik Gupta thepratikguptaa

:shipit:
Learning Everyday
View GitHub Profile
@thepratikguptaa
thepratikguptaa / gist:15555676d8e4d9e9c3deeb81afff947d
Created August 8, 2025 09:55
GitHub Chart used in my portfolio
"use client"
import * as React from "react"
export function LineChart({
data,
height = 200,
stroke = "#22c55e",
label = "Last 31 days",
}: {
"use client"
import * as React from "react"
import { useTheme } from "next-themes"
type Day = { date: string; contributionCount: number; color?: string }
type Week = { firstDay?: string; contributionDays: Day[] }
export function GitHubHeatmap({
weeks = [],