Skip to content

Commit

Permalink
feat: requirements.txt added
Browse files Browse the repository at this point in the history
  • Loading branch information
C-NikhilKarthik committed Nov 21, 2023
1 parent fec1789 commit e073648
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/app/archive/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function Home() {
<div className="relative z-30">
<Navbar show={show} setShow={setShow} />
<div className="flex-col h-full items-center flex">
<div className="w-full px-12 pt-28 flex h-fit justify-center">
<div className="w-full md:px-12 md:pr-28 pt-28 flex h-fit justify-center">
<div className="flex md:mx-8 mx-4 flex-col items-center ">
<BsCode className="text-2xl drop-shadow-[0_6px_10px_rgba(192_132_250)] mb-4 text-gray-400" />
<div className="h-full w-[3px] rounded bg-[#64ffdba1] relative">
Expand Down
51 changes: 26 additions & 25 deletions src/components/Archive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,23 @@ function Archive() {
<h2 className="whitespace-nowrap flex items-center text-[clamp(40px,8vw,72px)] font-semibold">
Archive
</h2>
<h3 className="text-[#64ffda] text-lg">List of things I&apos;ve worked on</h3>
<h3 className="text-[#64ffda] text-lg">
List of things I&apos;ve worked on
</h3>
<div className="my-24 w-full">
<table className="table-auto text-sm text-left text-gray-500 dark:text-gray-400">
<table className="table-auto w-full text-sm text-left text-gray-500 dark:text-gray-400">
<thead className="text-gray-700 uppercase dark:text-gray-400">
<tr>
<th scope="col" className="px-6 py-3">
<th scope="col" className="md:px-6 md:py-3 p-2">
Year
</th>
<th scope="col" className="px-6 py-3">
<th scope="col" className="md:px-6 md:py-3 p-2">
Title
</th>
<th scope="col" className="px-6 py-3">
<th scope="col" className="hidden lg:flex px-6 py-3">
Built on
</th>
<th scope="col" className="px-6 py-3">
<th scope="col" className="md:px-6 md:py-3 p-2">
Link
</th>
</tr>
Expand All @@ -49,15 +51,12 @@ function Archive() {
key={proj.key}
className="odd:bg-[#08192ef0]/50 hover:text-[#64ffda] even:bg-[#cacacaf0]/20 border-b dark:border-gray-700"
>
<td className="px-6 py-4">{proj.Year}</td>
<th
scope="row"
className="px-6 py-4 font-medium whitespace text-white group-hover:text-[#64ffda]"
>
<td className="md:px-6 md:py-3 p-4">{proj.Year}</td>
<td className="md:px-6 md:py-3 p-4 font-medium whitespace text-white group-hover:text-[#64ffda]">
{proj.heading}
</th>
<td className="px-6 py-4">
<div className="flex flex-wrap max-w-[400px]">
</td>
<td className="hidden lg:flex md:px-6 md:py-3 p-4">
<div className="flex flex-wrap w-full max-w-[400px]">
{proj.techStack?.length > 0 &&
proj.techStack.map((item, i) => (
<span key={i}>
Expand All @@ -69,17 +68,19 @@ function Archive() {
))}
</div>
</td>
<td className="flex px-6 py-4 gap-2 items-center text-lg">
{proj?.Link && (
<a href={proj?.Link} aria-label="External Link">
<FiExternalLink />
</a>
)}
{proj?.GitHubLink && (
<a href={proj?.GitHubLink} aria-label="GitHub Link">
<FiGithub />
</a>
)}
<td className="md:px-6 md:py-3 p-4 text-lg">
<div className="flex items-center gap-2">
{proj?.Link && (
<a href={proj?.Link} aria-label="External Link">
<FiExternalLink />
</a>
)}
{proj?.GitHubLink && (
<a href={proj?.GitHubLink} aria-label="GitHub Link">
<FiGithub />
</a>
)}
</div>
</td>
</tr>
))}
Expand Down

0 comments on commit e073648

Please sign in to comment.