Skip to content

Commit cf861c4

Browse files
committed
➕ADD: TMK in personal webapp list
1 parent 03759b4 commit cf861c4

File tree

3 files changed

+45
-7
lines changed

3 files changed

+45
-7
lines changed

components/ProjectCard.js

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,41 @@ export default function ProjectCard({ title, description, href, icon, tags }) {
1010
>
1111
<div className="flex items-center border border-gray-200 dark:border-gray-800 rounded p-4">
1212
{/* */}
13+
{icon === "tailwindmasterkit" && (
14+
<div className="h-8 w-8 ml-2 mr-4">
15+
{/*
16+
className="h-8 w-8 min-w-lg text-gray-900 dark:text-gray-100"
17+
*/}
18+
19+
<svg
20+
width="260"
21+
height="260"
22+
viewBox="0 0 260 260"
23+
fill="none"
24+
xmlns="http://www.w3.org/2000/svg"
25+
className="h-8 w-8 min-w-lg text-gray-900 dark:text-gray-100 "
26+
>
27+
<rect width="260" height="260" rx="11" fill="#FBBF24" />
28+
<path
29+
d="M76.3492 60.7143C76.3492 57.9529 78.5878 55.7143 81.3492 55.7143H260V107.302H81.3492C78.5878 107.302 76.3492 105.063 76.3492 102.302V60.7143Z"
30+
fill="white"
31+
/>
32+
<rect
33+
x="156.825"
34+
y="260"
35+
width="156.825"
36+
height="51.5873"
37+
transform="rotate(-90 156.825 260)"
38+
fill="white"
39+
/>
40+
</svg>
41+
</div>
42+
)}
1343
{icon === "covidrescue" && (
1444
<div className="h-8 w-8 ml-2 mr-4">
1545
<svg
1646
xmlns="http://www.w3.org/2000/svg"
17-
className="h-8 w-8 min-w-lg text-gray-900 dark:text-gray-100"
47+
className="h-8 w-8 min-w-lg text-gray-900 dark:text-gray-100 "
1848
fill="none"
1949
viewBox="0 0 24 24"
2050
stroke="currentColor"

pages/index.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ export default function Home() {
5656
<h3 className="font-bold text-2xl md:text-4xl tracking-tight mb-4 mt-8 text-black dark:text-white">
5757
Projects
5858
</h3>
59+
<ProjectCard
60+
title="Tailwind Master Kit"
61+
description="Beautiful, Handcrafted, ready-to-use components and templates for your next Tailwind web app project."
62+
href="https://tailwindmasterkit.com/"
63+
icon="tailwindmasterkit"
64+
tags={["Tailwind", "Next.js", "Freemium"]}
65+
/>
5966
<ProjectCard
6067
title="Covid Rescue"
6168
description="Get Real-time verified leads on Oxygen, Beds, Remdesivir and more with location and resource filtering"
@@ -69,12 +76,6 @@ export default function Home() {
6976
href="https://placeholdertech.in/"
7077
icon="placeholdertech"
7178
/>
72-
<ProjectCard
73-
title="Playground"
74-
description="An open-source playground to create HTML, CSS and Javascript components on the go."
75-
href="https://play.placeholdertech.in/"
76-
icon="play"
77-
/>
7879
<ProjectCard
7980
title="Feedmeback"
8081
description="The easiest way to add comments or reviews to your static site. Built as part of React 2025."

pages/projects.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ export default function projects() {
3030
Full-Stack
3131
</h3>
3232

33+
<ProjectCard
34+
title="Tailwind Master Kit"
35+
description="Beautiful, Handcrafted, ready-to-use components and templates for your next Tailwind web app project."
36+
href="https://tailwindmasterkit.com/"
37+
icon="tailwindmasterkit"
38+
tags={["Tailwind", "Next.js", "Freemium"]}
39+
/>
3340
<ProjectCard
3441
title="Covid Rescue"
3542
description="Get Real-time verified leads on Oxygen, Beds, Remdesivir and more with location and resource filtering"

0 commit comments

Comments
 (0)