Revert "wakatime component"

This reverts commit 9e959d3642.
This commit is contained in:
2026-02-06 11:47:30 +00:00
parent 9e959d3642
commit 69da87b57d
2 changed files with 1 additions and 158 deletions

View File

@@ -10,7 +10,6 @@ import { Link, Route, Routes, useParams } from "react-router-dom";
import { AskAI } from "@/components/ask-ai";
import { ProjectListItem } from "@/components/ProjectListItem";
import { TimeSince } from "@/components/time-since";
import { WakaTimeStats } from "@/components/wakatime-stats";
import { type ProjectEntry, projectList, projects } from "@/projects";
import { ThemeToggle } from "./components/theme-toggle";
@@ -103,7 +102,7 @@ function Home() {
Age: <TimeSince date={new Date(2004, 10, 4, 11, 47, 0)} />
</div>
</div>
<div className="w-full max-w-5xl grid grid-cols-1 md:grid-cols-2 gap-2">
<div className="w-full max-w-5xl grid grid-cols-1 md:grid-cols-2 gap-4">
{sortedProjects.map((project) => (
<ProjectListItem
key={project.metadata.slug}
@@ -112,7 +111,6 @@ function Home() {
/>
))}
</div>
<WakaTimeStats />
<div className="w-full max-w-5xl flex items-center justify-between gap-4">
<div className="flex items-center gap-6">
<AskAI name="me" inline />