Git Product home page Git Product logo

template-portfolio's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

template-portfolio's Issues

[FEATURE] add light mode

Description

The project just as a dark mode

Additional information

Tasks:

  • Add a toggle to switch between light and dark mode
  • Configure the colours according to the mode chosen

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

No response

[DOCS] add readme file

Description

Add a readme file, it should have:
โ€” what the project is about
โ€” technologies used (they are: react, email.js)
โ€” how to install & run

Screenshots

No response

Additional information

No response

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

No response

Heading getting cut at the top of 2nd section

Description

In Mobile View the heading is getting cut at the top.

I have attached the screenshot below for reference.
Please have a look.

Issues in code

-.Projects {margin-top: -1.5rem;}
+-.Projects {margin-top: -1rem;}

Screenshots

Screenshot Attached

Additional information

There are other updates that we can do to make the UI much better. I will be raising the requests one by one.

๐Ÿฅฆ Browser

Google Chrome

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

Yes I am willing to submit a PR!

[BUG] Project and Form contact are not responsive

Description

Project boxes are not responsive and have a blank right sided empty space.

Form contact could be 50/50 on desktop and full-width on mobile for better view, also have a blank space on the left side

Screenshots

Screenshot from 2023-08-18 16-35-49
Screenshot from 2023-08-18 16-35-54
Screenshot from 2023-08-18 16-36-01

Additional information

skills box should take the entire space

๐Ÿฅฆ Browser

Mozilla Firefox

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

Yes I am willing to submit a PR!

[REFACTOR]: update the code to store projectsInfo as an array

What would you like to share?

I want to make the projectsInfo an array of objects that way it makes it easier to create an object for a new Project and also easier to render the projects

Current Code

src/Components/Projects.jsx

const Projects = () => {
  const projectsInfo = {
    one: {
      name: 'Project 1',
      desc: 'congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed',
      liveLink: 'website url',
      githubLink: 'https://github.com/',
      techs: ['HTML', 'CSS', 'TypeScript'],
      isOpenSource: true
    },
    two: {
      name: 'Project 2',
      desc: 'congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed',
      liveLink: 'website url',
      githubLink: 'https://github.com/',
      techs: ['React', 'Node', 'MongoDB', 'Socket.io', 'Redux'],
      isOpenSource: true
    }
  }
  return (
    <div className="Projects" id="projects" >
      <h2>My Projects</h2>
      <div>
        <Project info={projectsInfo.one} />
        <Project info={projectsInfo.two} />
      </div>
    </div>
  )
}

src/Components/Project.jsx

const Project = ({ info }) => {
  return (
    <div className="project">
      <h2>{info.name}</h2>
      <p>{info.desc}</p>
      <div className="tech-stack">
        {info.techs.map(item => <div key={item}>{item}</div>)}
      </div>
      <div className="btns">
        <a href={info.liveLink} target="_blank" rel="noreferrer">Live</a>
        <a href={info.githubLink} target="_blank" rel="noreferrer">Github</a>
      </div>
      {info.isOpenSource && <div className="open">Open Source</div>}
    </div>
  )
}

Proposed Code

src/Components/Projects.jsx

const Projects = () => {
  const projectsInfo = [
    {
      name: 'Project 1',
      desc: 'congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed',
      liveLink: 'website url',
      githubLink: 'https://github.com/',
      techs: ['HTML', 'CSS', 'TypeScript'],
      isOpenSource: true
    },
    {
      name: 'Project 2',
      desc: 'congue quisque egestas diam in arcu cursus euismod quis viverra nibh cras pulvinar mattis nunc sed blandit libero volutpat sed',
      liveLink: 'website url',
      githubLink: 'https://github.com/',
      techs: ['React', 'Node', 'MongoDB', 'Socket.io', 'Redux'],
      isOpenSource: true
    }
  ]
  return (
    <div className="Projects" id="projects" >
      <h2>My Projects</h2>
      <div>
        {projects.map(project => <Project {...project} />)}
      </div>
    </div>
  )
}

src/Components/Project.jsx

const Project = ({ name, desc, techs, liveLink, githubLink, isOpenSource }) => {
  return (
    <div className="project">
      <h2>{name}</h2>
      <p>{desc}</p>
      <div className="tech-stack">
        {techs.map(item => <div key={item}>{item}</div>)}
      </div>
      <div className="btns">
        <a href={liveLink} target="_blank" rel="noreferrer">Live</a>
        <a href={githubLink} target="_blank" rel="noreferrer">Github</a>
      </div>
      {isOpenSource && <div className="open">Open Source</div>}
    </div>
  )
}

Additional information

No response

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

Yes I am willing to submit a PR!

[BUG] Deprecated package

Description

The "emailjs-com" package used in this project has been deprecated and the package to be used is "@emailjs/browser"

The code in the Mail.jsx file can be updated like this using the new package

Old Code

import { send } from 'emailjs-com';

send(serviceID, templateID, {
  subject: toSend.subject,
  name: toSend.name,
  email: toSend.email,
  message: toSend.message,
}, publicKey);

New Code

import emailjs from '@emailjs/browser';

emailjs.send(serviceID, templateID, toSend, publicKey)
  .then((response) => {
	   console.log('SUCCESS!', response.status, response.text);
  }, (err) => {
	   console.log('FAILED...', err);
});

Note: The code above hasn't been tested in the codebase.

You can also use react-toastify to display success or failed to the user.

Screenshots

image

Additional information

No response

๐Ÿฅฆ Browser

Google Chrome

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

Yes I am willing to submit a PR!

[BUG] Email Does not Support "Yahoo.co.in"

Description

The Validation Function of "Mail.jsx" does not have "yahoo.co.in" an does function doesn't allows that email.

Screenshots

No response

Additional information

No response

๐Ÿฅฆ Browser

Microsoft Edge

๐Ÿ‘€ Have you checked if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Contributing Guidelines?

Are you willing to work on this issue ?

Yes I am willing to submit a PR!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.