-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added footer, embeded links, change event list to workshop schedule …
…and updated Favcon + page title
- Loading branch information
Showing
19 changed files
with
223 additions
and
105 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
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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,24 @@ | ||
import logo from '../../assets/logo.png'; | ||
import { SOCIAL_MEDIA_LINKS } from '../../constants'; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className="mb-8 mt-20"> | ||
<div className="flex items-center justify-center"> | ||
<img src={logo} width={200} className="my-10" alt="Logo" /> | ||
</div> | ||
<div className="flex items-center justify-center gap-8"> | ||
{SOCIAL_MEDIA_LINKS.map((item, index) => ( | ||
<a key={index} href={item.href} target="_blank" rel="noopener noreferrer"> | ||
{item.icon} | ||
</a> | ||
))} | ||
</div> | ||
<p className="mt-8 text-center text-sm tracking-wide text-gray-400"> | ||
© compileTab. All rights reserved. | ||
</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
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,11 @@ | ||
/* @media (max-width: 305px) { | ||
.hidden-on-small { | ||
display: none; | ||
} | ||
} | ||
@media (min-width: 306px) { | ||
.hidden-on-small { | ||
display: block; | ||
} | ||
} */ |
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,40 @@ | ||
import { PROJECTS } from "../../constants/index"; | ||
import { MdArrowOutward } from "react-icons/md"; | ||
|
||
const Projects = () => { | ||
return ( | ||
<section className="pt-20" id="projects"> | ||
<h2 className="mb-12 text-center text-4xl lg:text-5xl font-extrabold tracking-tight text-gray-200"> | ||
Projects | ||
</h2> | ||
<div className="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3 px-4 md:px-8"> | ||
{/* project contents found in constants folder in index.jsx */} | ||
{PROJECTS.map((project) => ( | ||
<div key={project.id} className="group relative overflow-hidden rounded-3xl shadow-lg transition-shadow hover:shadow-2xl"> | ||
<img | ||
src={project.image} | ||
alt={project.name} | ||
className="h-full w-full object-cover transition-transform duration-500 group-hover:scale-105 rounded-3xl" | ||
/> | ||
|
||
<div className="absolute inset-0 flex flex-col items-center justify-center text-white opacity-0 backdrop-blur-md transition-opacity duration-500 group-hover:opacity-100 bg-black/50 rounded-3xl"> | ||
<h3 className="mb-4 text-2xl font-semibold uppercase tracking-wide">{project.name}</h3> | ||
<p className="mb-8 px-6 text-sm md:text-base leading-relaxed">{project.description}</p> | ||
<a | ||
href={project.githubLink} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center rounded-full bg-white text-black px-6 py-3 font-semibold hover:bg-gray-300 transition-all duration-300" | ||
> | ||
<span>View on Github</span> | ||
<MdArrowOutward className="ml-2" /> | ||
</a> | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
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
Oops, something went wrong.