-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
234 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Netlify | ||
# VITE_ASSET_BASE_URL=https://assetseverydaykarmaa.netlify.app/ | ||
VITE_ASSET_BASE_URL_NETLIFY=https://assetseverydaykarmaa.netlify.app/ | ||
|
||
# GitHub | ||
VITE_ASSET_BASE_URL=https://raw.githubusercontent.com/isarojdahal/everydaykarmaa.com-assets/refs/heads/main | ||
VITE_ASSET_BASE_URL=https://raw.githubusercontent.com/ashmin-bhujel/everydaykarmaa.com-assets/refs/heads/main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { ProjectCardPropType } from "@/ui/molecules/ProjectCard"; | ||
|
||
const projects: ProjectCardPropType[] = [ | ||
{ | ||
title: "EverydayKarma Website", | ||
link: "https://everydaykarmaa.com/", | ||
repoLink: "https://github.com/isarojdahal/everydaykarmaa.com", | ||
description: "EverydayKarma Official Website", | ||
contributorsGraph: | ||
"https://github.com/isarojdahal/everydaykarmaa.com/graphs/contributors", | ||
contributors: | ||
"https://contrib.rocks/image?repo=isarojdahal/everydaykarmaa.com", | ||
}, | ||
{ | ||
title: "Learn EverydayKarma Website", | ||
link: "https://learn.everydaykarmaa.com/", | ||
repoLink: "https://github.com/isarojdahal/learn.everydaykarmaa.com", | ||
description: "Learning Notes and Videos along with Blogs", | ||
contributorsGraph: | ||
"https://github.com/isarojdahal/learn.everydaykarmaa.com/graphs/contributors", | ||
contributors: | ||
"https://contrib.rocks/image?repo=isarojdahal/learn.everydaykarmaa.com", | ||
}, | ||
{ | ||
title: "BackupDBee", | ||
link: "https://28softwares.github.io/BackupDBee/", | ||
repoLink: "https://github.com/28softwares/BackupDBee", | ||
description: "Automatic CLI Based Advance DB Backup System", | ||
contributorsGraph: | ||
"https://github.com/28softwares/BackupDBee/graphs/contributors", | ||
contributors: "https://contrib.rocks/image?repo=28softwares/BackupDBee", | ||
}, | ||
{ | ||
title: "DocumentProject", | ||
repoLink: "https://github.com/28softwares/DocumentProject", | ||
description: | ||
"Repo for Documenting Project (Diagrams, .env, changes and soon)- Built using Docusaurus", | ||
contributorsGraph: | ||
"https://github.com/28softwares/DocumentProject/graphs/contributors", | ||
contributors: | ||
"https://contrib.rocks/image?repo=28softwares/DocumentProject", | ||
}, | ||
]; | ||
|
||
export default projects; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import OpenSource from "@/ui/pages/opensource"; | ||
import { createLazyFileRoute } from "@tanstack/react-router"; | ||
|
||
export const Route = createLazyFileRoute("/opensource")({ | ||
component: () => <OpenSource />, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import { FaGithub, FaGlobe } from "react-icons/fa6"; | ||
|
||
export interface ProjectCardPropType { | ||
title: string; | ||
description: string; | ||
link?: string; | ||
repoLink: string; | ||
contributorsGraph: string; | ||
contributors: string; | ||
} | ||
|
||
export default function ProjectCard({ | ||
project, | ||
}: { | ||
project: ProjectCardPropType; | ||
}) { | ||
return ( | ||
<div className="flex max-lg:flex-col gap-6 items-center justify-between p-8 border border-gray-300 rounded-lg"> | ||
<div className="flex flex-col gap-1"> | ||
<p className="text-3xl font-bold">{project.title}</p> | ||
<p className="text-lg text-gray-600">{project.description}</p> | ||
|
||
{/* Links */} | ||
<div className="flex flex-wrap items-center max-lg:gap-2 gap-4"> | ||
{project.link && ( | ||
<a | ||
href={project.link} | ||
target="_blank" | ||
className="inline-block max-lg:w-full w-fit bg-blue-700 hover:bg-blue-600 active:bg-blue-800 text-white font-semibold px-4 py-2 mt-2 rounded-full" | ||
> | ||
<p className="flex items-center gap-2 justify-center"> | ||
<FaGlobe /> | ||
Live Website | ||
</p> | ||
</a> | ||
)} | ||
|
||
<a | ||
href={project.repoLink} | ||
target="_blank" | ||
className="inline-block max-lg:w-full w-fit bg-blue-700 hover:bg-blue-600 active:bg-blue-800 text-white font-semibold px-4 py-2 mt-2 rounded-full" | ||
> | ||
<p className="flex items-center gap-2 justify-center"> | ||
<FaGithub /> | ||
Contribute | ||
</p> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
{/* Contributors */} | ||
<div className="flex flex-col gap-2"> | ||
<p className="text-gray-600 text-lg max-lg:text-center text-right"> | ||
Contributors | ||
</p> | ||
<a | ||
href={project.contributorsGraph} | ||
target="_blank" | ||
title={`${project.title} Contributors`} | ||
className="flex items-center justify-center" | ||
> | ||
<img | ||
src={project.contributors} | ||
alt={`${project.title} Contributors`} | ||
/> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.