Skip to content

mohdfaizan5/OurPortfolio.live

Repository files navigation

OurPortfolio.live

Convert your ugly github

Frame 2

The project aims to simplify the process of creating, updating, managing, and hosting portfolios, providing a seamless and hassle-free experience. Currently I have implemented as an API, the system incorporates fundamental CRUD (Create, Read, Update, Delete) functionalities, allowing users to effortlessly interact with their portfolios and share them with other forks and potential employeer and clients.

The focus is on user accessibility and convenience, ensuring that individuals, regardless of their technical background, can easily showcase their work and achievements. Future upgrades are planned to add feature to select custom portfolio designs and themes, providing a robust environment for individuals to present their skills and projects effectively. Moreover my solution it not only facilitates portfolio creation but also streamlines the process of making these portfolios publicly accessible. As the project evolves, it promises to empower users to establish a professional online presence with minimal effort, aligning with the overarching goal of providing a user-centric and efficient portfolio management system. image

Tech Stack

import multer from "multer"

const storageConfig = multer.diskStorage({
  destination: function (req, file, cb) {
    cb(null, "./public/temp")
  },
  filename: function (req, file, cb) {
    cb(null, file.originalname)
  },
})

export const upload = multer({
  storage: storageConfig,
})

We love our contributors! Here's how you can contribute:

  • Open an issue if you believe you've encountered a bug.
  • Make a pull request to add new features/make quality-of-life improvements/fix bugs.

Want to know, how I did this. Refer here for the docs


How to use custom fonts in css

https://www.youtube.com/watch?v=arfDRUIZOiw&pp=4AQB&pbjreload=102&ab_channel=NetNinja