From 7cf32f0e9185647ab291e68726d35d2b5ebcc751 Mon Sep 17 00:00:00 2001 From: Tanmay Chaudhari Date: Sun, 14 Jan 2024 19:28:06 -0500 Subject: [PATCH] :sparkles: Add Projects section --- assets/css/extended/styles.css | 38 ++++++++++++++++++++++++++++++++++ content/projects.md | 25 ++++++++++++++++++++++ hugo.yaml | 4 ++++ 3 files changed, 67 insertions(+) create mode 100644 assets/css/extended/styles.css create mode 100644 content/projects.md diff --git a/assets/css/extended/styles.css b/assets/css/extended/styles.css new file mode 100644 index 0000000..fcd9033 --- /dev/null +++ b/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); +} \ No newline at end of file diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..049fc07 --- /dev/null +++ b/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 diff --git a/hugo.yaml b/hugo.yaml index 987a663..ffb0c3a 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -15,6 +15,10 @@ menu: name: about url: /about weight: 20 + - identifier: projects + name: projects + url: /projects + weight: 30 params: