Skip to content

Commit

Permalink
✨ Add Projects section
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmayc07 committed Jan 15, 2024
1 parent 1b7c377 commit 7cf32f0
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
38 changes: 38 additions & 0 deletions assets/css/extended/styles.css
@@ -0,0 +1,38 @@
/* For the Projects Page*/
.post-content dt ~ dt, .post-content dd ~ dd {
margin-top: 1.5rem;
}

.post-content dt em {
display: block;
text-align: left;
font-size: 0.875rem;
font-weight: 400;
font-style: normal;
color: var(--secondary);
}

.post-content a,
.post-description a {
position: relative;
text-decoration: none;
box-shadow: none;
}

.post-content a::before,
.post-description a::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--content);
transform: scaleX(0);
transition: transform 0.3s ease;
}

a:hover::before {
transform: scaleX(1);
}
25 changes: 25 additions & 0 deletions content/projects.md
@@ -0,0 +1,25 @@
---
title: Projects
layout: single
# description:
showReadingTime: false
# modified: 2023-01-29
keywords:
- Write.it
- Portfolio
---

[Write.it](https://github.com/tanmayc07/Blog-App) *Team Project*
: Write.it is a simple to use blogging platform developed using [**JavaScript's**](https://developer.mozilla.org/en-US/docs/Web/JavaScript) [**ExpressJs**](https://expressjs.com/) framework and [**MongoDb**](https://www.mongodb.com/).

[FIFA Player Analysis](https://github.com/tanmayc07/CS532_Nosql_Project) *Team Project*
: Performed Data Analysis of Fifa Player's stats for last 10 years using non-trivial NoSql queries. Web Client written in [**Python**](https://python.org) using [**Flask**](https://flask.palletsprojects.com/en/3.0.x/)

[Weather Dashboard](https://github.com/tanmayc07/WeatherDashboard) *Side Project*
: Weather Dashboard App with clean UI created using [**Django**](https://www.djangoproject.com/) and OpenWeatherMap [**API**](https://openweathermap.org/)

[Vaccine Efficiency Prediction](https://github.com/tanmayc07/WWCodeHackathon) *Team Project*
: Designed and trained a Machine Learning Algorithm for Vaccine Efficiency Prediction using B-cell epitope predictions dataset. Created the Web Client using [**StreamLit**](https://streamlit.io/)

[Portfolio](https://tanmayc.me/personal-site) *Side Project*
: The website you're currently on! Powered by [**Hugo**](https://gohugo.io/) & [**PaperMod**](https://git.io/hugopapermod) with custom CSS & content
4 changes: 4 additions & 0 deletions hugo.yaml
Expand Up @@ -15,6 +15,10 @@ menu:
name: about
url: /about
weight: 20
- identifier: projects
name: projects
url: /projects
weight: 30


params:
Expand Down

0 comments on commit 7cf32f0

Please sign in to comment.