Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adisreyaj/portfolio
My personal website and portfolio. Made with NextJs
https://github.com/adisreyaj/portfolio
nextjs portfolio react website
Last synced: 14 days ago
JSON representation
My personal website and portfolio. Made with NextJs
- Host: GitHub
- URL: https://github.com/adisreyaj/portfolio
- Owner: adisreyaj
- License: mit
- Created: 2021-05-02T08:49:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-20T09:36:50.000Z (7 months ago)
- Last Synced: 2024-10-15T04:44:46.513Z (26 days ago)
- Topics: nextjs, portfolio, react, website
- Language: JavaScript
- Homepage: https://adi.so
- Size: 13.7 MB
- Stars: 25
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Adithya Sreyaj's Portfolio
Presenting my personal portfolio ✨ website where I showcase my projects 💻, blogs 📰 and more.I always wanted a portfolio, but wanted something that is different 🥳 from all the other portfolios out there.
One fine day, I got a design idea 💡, and just started
working it a created a mock in figma. It turned out great.Next day, I started building it out.
## Sections
It's a single page website and is divided into multiple sections.
- Hero Section
- Projects Showcase
- Career Timeline
- About Section
- Tech Stack
- Blogs Showcase
- Talks/Conference Section
- My Dev Tools
- What am I playing on Spotify?## Tech Stack
So it's all **JavaScript** because for a very small project like this it might not make that sense to use TypeScript (I Love TypeScript btw!).
And its only me who will work on this one.NextJs is just an amazing framework to work with, especially with the file based routing and SSR capabilities. And for styling its TailwindCSS.
With Vercel, deployments are a breeze and you don't have to worry about a thing.### Links
- Next.Js: https://nextjs.org/
- TailwindCSS: https://tailwindcss.com/
- Vercel: https://vercel.com/Here is how the files are arranged:
```shell
├── components
├── data
├── lib
├── pages
├── public
└── styles
```## Data Sources
Data for different sections of the application are sourced from files in the `data` directory. They are just plain JavaScript files.
```shell
├── dev-setup.js
├── job.js
├── project.js
└── talks.js
```
## Blogs IntegrationThe blogs displayed on the portfolio are from my [Blog](https://sreyaj.dev) which is hosted on Hashnode.
Hashnode provides an API to fetch the posts of a user via a GraphQL query.
```js
const query = gql`
query {
user(username: "adisreyaj") {
publication {
posts(page: 0) {
title
coverImage
slug
cuid
totalReactions
brief
dateUpdated
}
}
}
}
`;
const data = await request('https://api.hashnode.com/', query);
return {
props: {
posts: data.user.publication.posts,
jobs: JOBS,
projects: PROJECTS,
},
};
```
This returns an array of posts of the specified user.## What am I playing on Spotify?
This is an interesting bit that I added, inspired by the [Lee Rob's blog](https://leerob.io/).
It shows the current song that I'm listening to on Spotify.![What am I playing now](public/images/playing-now-spotify.png)
He has written a wonderful blog on how to set up Spotify integration with Next.js.
Read Here: https://leerob.io/blog/spotify-api-nextjs
## Show your support
Don't forget to ⭐️ the repo if you liked it. Just would mean a lot to me.