-
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.
Merge remote-tracking branch 'origin/development' into development
- Loading branch information
Showing
4 changed files
with
107 additions
and
5 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
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,100 @@ | ||
const Bin = () => { | ||
return ( | ||
<div> | ||
<div className={"text-center pt-24 pb-8"}> | ||
<div className="font-body text-3xl"> | ||
./Bin | ||
</div> | ||
<div className="pt-4 font-body text-6xl"> | ||
Portfolio | ||
</div> | ||
</div> | ||
<div className={"grid grid-cols-2 lg:grid-cols-3 gap-2 md:gap-12 font-body m-4 md:m-0"}> | ||
<div className={"rounded-3xl bg-secondary-light dark:bg-secondary-dark"}> | ||
<div className={"p-4 flex flex-col"}> | ||
<img alt="Portfolio Webiste" className={"rounded-3xl h-40 md:h-60 object-cover"} | ||
src={"/portfolio/portfoliowebsite.png"}></img> | ||
<div className={"md:flex justify-evenly flex-row flex-wrap gap-2 py-4 text-center hidden"}> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Web Design | ||
</span> | ||
</div> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Web Development | ||
</span> | ||
</div> | ||
</div> | ||
<div className={"flex mt-4 md:mt-0"}> | ||
<button className={"text-text-dark md:text-2xl w-full px-6 p-2 rounded-full bg-primary-light dark:bg-primary-dark"}> | ||
Portfolio Website | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={"rounded-3xl bg-secondary-light dark:bg-secondary-dark"}> | ||
<div className={"p-4 flex flex-col"}> | ||
<img alt="Portfolio Webiste" className={"rounded-3xl h-40 md:h-60 object-cover"} | ||
src={"/portfolio/citriclabs.png"}></img> | ||
<div className={"md:flex justify-evenly flex-row flex-wrap gap-2 py-4 text-center hidden"}> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Load-Testing | ||
</span> | ||
</div> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Cloud | ||
</span> | ||
</div> | ||
</div> | ||
<div className={"flex mt-4 md:mt-0"}> | ||
<button | ||
className={"text-text-dark md:text-2xl w-full px-6 p-2 rounded-full bg-primary-light dark:bg-primary-dark"}> | ||
Greenroom - Citric Labs | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={"rounded-3xl bg-secondary-light dark:bg-secondary-dark col-span-2 lg:col-span-1"}> | ||
<div className={"p-4 flex flex-col"}> | ||
<img alt="Portfolio Webiste" className={"rounded-3xl h-40 md:h-60 object-cover"} | ||
src={"/portfolio/simplepark.png"}></img> | ||
<div className={"md:flex justify-evenly flex-row flex-wrap gap-2 py-4 text-center hidden"}> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Cyber | ||
</span> | ||
</div> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Logging | ||
</span> | ||
</div> | ||
<div className={"p-2 px-4 bg-secondary-dark dark:bg-secondary-light rounded-full"}> | ||
<span className={"text-text-light dark:text-text-dark"}> | ||
Data Laws | ||
</span> | ||
</div> | ||
</div> | ||
<div className={"flex mt-4 md:mt-0"}> | ||
<button | ||
className={"text-text-dark md:text-2xl w-full px-6 p-2 rounded-full bg-primary-light dark:bg-primary-dark"}> | ||
SimplePark | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={"flex justify-center mt-4"}> | ||
<button | ||
className={"py-2 px-6 font-body text-2xl bg-primary-light rounded-full dark:bg-primary-dark text-text-dark hover:bg-primary-dark dark:hover:bg-primary-light"}> | ||
More dope projects | ||
</button> | ||
</div> | ||
</div> | ||
) | ||
} | ||
export default Bin | ||
|
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