generated from rajatsandeepsen/t3-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from aravind-manoj/main
Added CertiFoolProof and some minor ui fixes
- Loading branch information
Showing
1 changed file
with
16 additions
and
11 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 |
---|---|---|
|
@@ -9,9 +9,14 @@ import { Button } from "@/components/ui/button"; | |
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
import { BrainCircuit, CalendarDays, CheckCircle, CheckCircleIcon, FilePen, HardDrive, PanelTop, Send } from 'lucide-react'; | ||
import { BrainCircuit, CalendarDays, FilePen, HardDrive, PanelTop, Send, QrCode } from 'lucide-react'; | ||
import type { LucideIcon } from "lucide-react"; | ||
|
||
export const metadata = { | ||
title: "Season of Commits - Nexus Project", | ||
description: "Season of Commits is a month-long celebration of open-source contributions. Whether you're an experienced developer, a beginner looking to make your first pull request, or someone with a project to share, this event provides resources, mentorship, and a collaborative environment to help you succeed.", | ||
} | ||
|
||
type Project = { | ||
name: string; | ||
description: string; | ||
|
@@ -56,16 +61,16 @@ const projects: Project[] = [ | |
color: 'border-green-500 text-green-500', | ||
link: "https://github.com/IEDC-SJCET/IEDC" | ||
}, | ||
{ | ||
name: 'CertiFoolProof', | ||
description: 'A platform to verify the authenticity of certificates issued by clubs of SJCET', | ||
icon: QrCode, | ||
color: 'border-red-500 text-red-500', | ||
link: "https://github.com/TimsTittus/CertiFoolProof" | ||
}, | ||
]; | ||
|
||
const projectIdeas: (Omit<Project, "link"> & { from: string })[] = [ | ||
{ | ||
name: "Certificate Verification", | ||
description: "A simple webpage for faculties to verify certificates issued by clubs of SJCET", | ||
color: "border-red-500 text-red-500", | ||
icon: CheckCircle, | ||
from: "Bootcamp SJCET" | ||
}, | ||
{ | ||
name: "G-Drive Web portal", | ||
description: "A structured organizational web portal to edit/write/access Google Drive files", | ||
|
@@ -103,7 +108,7 @@ export default function Page() { | |
</Link> | ||
</div> | ||
</div> | ||
<div className="flex flex-col gap-4 p-10 w-full bg-white text-black"> | ||
<div className="flex flex-col gap-4 p-5 md:p-10 w-full bg-white text-black"> | ||
<div id="projects" /> | ||
<div className="max-w-4xl mx-auto"> | ||
<h1 className="text-3xl font-bold text-gray-900 text-center mb-12"> | ||
|
@@ -150,7 +155,7 @@ export default function Page() { | |
Some Project Ideas That <br /> You Can <span className="bg-green-400 px-2">Start Your Own</span> Right Now | ||
</h1> | ||
|
||
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3"> | ||
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-2"> | ||
{projectIdeas.map((project) => { | ||
const IconComponent = project.icon; | ||
return ( | ||
|
@@ -187,7 +192,7 @@ export default function Page() { | |
</div> | ||
</div> | ||
</div> | ||
<Link href="mailto:[email protected]" className="underline block text-center mt-8"> | ||
<Link href="mailto:[email protected]" className="underline block text-center mt-8 mb-8"> | ||
Want to be a maintainer? Let us know! (email: [email protected]) | ||
</Link> | ||
<div className="flex flex-col container"> | ||
|