Skip to content

Commit

Permalink
Merge pull request #19 from kmiguel10/development
Browse files Browse the repository at this point in the history
Added "Good Congress" project
  • Loading branch information
kmiguel10 authored Oct 25, 2023
2 parents 9262dbc + 40e649e commit a6e832c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
11 changes: 5 additions & 6 deletions app/components/home/running/running-details.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
"use client";

import { LENGTH_UNITS } from "@/lib/constants/units";
import IconButton from "@components/ui/icon-button";
import Tooltip from "@components/ui/tooltip";
import * as Tabs from "@radix-ui/react-tabs";
import RunningBarChart from "./running-bar-chart";
import RunningHeatMap from "./running-heatmap";
import clsx from "clsx";
import Button from "@components/ui/button";
import IconButton from "@components/ui/icon-button";
import { ArrowLeftRight, BarChart, Grid } from "lucide-react";
import { useState } from "react";
import { LENGTH_UNITS } from "@/lib/constants/units";
import Tooltip from "@components/ui/tooltip";
import RunningBarChart from "./running-bar-chart";
import RunningHeatMap from "./running-heatmap";

export default function RunningDetails({
runMonthlyData,
Expand Down
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ main {
}

* {
@apply selection:bg-[#2200ff] selection:text-white;
@apply selection:bg-[#63dcb4] selection:text-white;
box-sizing: border-box;
}

Expand Down
21 changes: 15 additions & 6 deletions app/projects/components/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
CircleDollarSign,
Swords,
ExternalLink,
Landmark,
} from "lucide-react";
import Button from "@components/ui/button/index";
import type { ReactNode } from "react";
Expand All @@ -28,31 +29,39 @@ type ProjectProps = {

const data: ProjectProps[] = [
{
id: 1,
id: 7,
symbol: <Landmark />,
name: "Good Congress",
description: "",
buttonRef: "https://github.com/kmiguel10/good-congress",
body: "Watch the current status of elected representatives, voting history, and fundraising activities",
},
{
id: 6,
symbol: <UserCircle2 />,
name: "Personal Website",
description: "",
buttonRef: "https://github.com/kmiguel10/www",
body: "My personal website that showcases my profile",
},
{
id: 2,
id: 5,
symbol: <Twitter />,
name: "Blue Bird",
description: "",
buttonRef: "https://github.com/kmiguel10/blue-bird",
body: "A twitter clone built with Next.js with Tailwind CSS, and supabase",
},
{
id: 3,
id: 4,
symbol: <KanbanSquare />,
name: "Issue Tracker",
description: "",
buttonRef: "http://google.com",
body: "A a full-stack App with Next.js, Tailwind, Radix UI, and Prisma",
},
{
id: 4,
id: 3,
symbol: <Vote />,
name: "DApp Voting",
description: "",
Expand All @@ -61,7 +70,7 @@ const data: ProjectProps[] = [
body: "A Decentralized Ranked-Choice Voting System built with Solidity and Hardhat",
},
{
id: 5,
id: 2,
symbol: <CircleDollarSign />,
name: "DApp Bounty",
description: "",
Expand All @@ -70,7 +79,7 @@ const data: ProjectProps[] = [
},

{
id: 6,
id: 1,
symbol: <Swords />,
name: "Buidl Guidl",
description: "",
Expand Down

0 comments on commit a6e832c

Please sign in to comment.