Skip to content

Commit

Permalink
My portfolio website (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: aman <[email protected]>
  • Loading branch information
inbuilt-aura and inbuilt-aura authored Oct 15, 2022
1 parent 1f0ad94 commit 48eeea7
Show file tree
Hide file tree
Showing 41 changed files with 29,115 additions and 0 deletions.
28 changes: 28 additions & 0 deletions inbuilt-aura-portfolio-website/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react'
import Header from './components/Header/header'
import Nav from './components/Nav/nav'
import About from './components/About/about'
import Experience from './components/Experience/experience'
import Services from './components/Services/services'
import Portfolio from './components/Portfolio/portfolio'
import Testimonial from './components/testimonial/testimonial'
import Contact from './components/Contact/contact'
import Footer from './components/Footer/footer'

const App = () => {
return (
<>
<Header/>
<Nav/>
<About/>
<Experience/>
<Services/>
<Portfolio/>
<Testimonial/>
<Contact/>
<Footer/>
</>
)
}

export default App
70 changes: 70 additions & 0 deletions inbuilt-aura-portfolio-website/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

The page will reload when you make changes.\
You may also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Binary file added inbuilt-aura-portfolio-website/assets/avatar1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inbuilt-aura-portfolio-website/assets/avatar2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inbuilt-aura-portfolio-website/assets/avatar3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inbuilt-aura-portfolio-website/assets/avatar4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inbuilt-aura-portfolio-website/assets/cv.pdf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added inbuilt-aura-portfolio-website/assets/me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
88 changes: 88 additions & 0 deletions inbuilt-aura-portfolio-website/components/About/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
.about_container{
display:grid;
grid-template-columns: 35% 50%;
gap:15%;
}
.about_me{
width:100%;
aspect-ratio: 1/1;
border-radius: 2rem;
background:linear-gradient(45deg, transparent,var(--color-primary),transparent);
display:grid;
place-items:center;
}
.about_me-image{
border-radius:2rem;
overflow:hidden;
transform:rotate(10deg);
}
.about_me-image:hover{
transform:rotate(0);
}
.about_cards{
display:grid;
grid-template-columns: repeat(3,1fr);
gap:1.5rem;
}
.about_card{
background:var(--color-bg-variant);
border:1px solid transparent;
border-radius:1rem;
padding:2rem;
text-align:center;
transition:var(--transition);
}
.about_card:hover{
background:transparent;
border-color:var(--color-primary-variant);
cursor:default;
}

.about-icon{
color:var(--color-primary);
font-size:1.4rem;
margin-bottom:1rem;
}
.about_card h5{
font-size:0.95rem;
}
.about_card small{
font-size: 0.7rem;
color:var(--color-light);
}
.about_content p{
margin:2rem 0 2.6rem;
color:var(--color-light);
}

/*________________________Media Queries(Medium Devices)_______________________*/
@media screen and(max-width:1024px){
.about_container{
grid-template-columns:1fr;
gap:0;
}
.about_me{
width:50%;
margin:2rem auto 4rem;
}
.about_content p{
margin: 1rem 0 1.5rem;
}
}
/*--------------------Media Queries(Small Devices)-----------------------*/
@media screen and (max-width:600px){
.about_me{
width:60%;
margin:0 auto 3rem;
}
.about_cards{
grid-template-columns: 1fr 1fr;
gap:1rem;
}
.about_content{
text-align:center;
}
.about_content p{
margin:1.5rem 0;
}
}
49 changes: 49 additions & 0 deletions inbuilt-aura-portfolio-website/components/About/about.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import React from 'react'
import './about.css'
import ME from '../../assets/me-about.jpg'
import {FaAward} from 'react-icons/fa'
import {FiUsers} from 'react-icons/fi'
import {VscFolderLibrary} from 'react-icons/vsc'
const about = () => {
return (
<section id='about'>
<h5> Get To Know</h5>
<h2>About Me</h2>

<div className="container about_container">
<div className="about_me">
<div className="about_me-image">
<img src={ME} alt="About Image"/>
</div>
</div>

<div className="about_content">
<div className="about_cards">
<article className='about_card'>
<FaAward className='about_icon'/>
<h5> Experience </h5>
<small>1+ Years Working </small>
</article>

<article className='about_card'>
<FiUsers className='about_icon'/>
<h5>Clients</h5>
<small>10+ Worldwide </small>
</article>

<article className='about_card'>
<VscFolderLibrary className='about_icon'/>
<h5>Projects </h5>
<small>10+ completed </small>
</article>
</div>
<p>lorem ipsum saijdifmbvsm ddiog de0 dfme 0wm rtf ew hy eewewwww qsmkscm soskv ov ojkv o mov odkdocvm wsjckofkff kddkdodv dcdssxv dfdddfdkdk sdosdjddjdojdojd </p>
<a href="#contact" className='btn btn-primary'> Let's Talk </a>
</div>
</div>
</section>
)
}

export default about

32 changes: 32 additions & 0 deletions inbuilt-aura-portfolio-website/components/Contact/contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.container.contact_container {
width:58%;
display:grid;
grid-template-columns:30% 58%;
gap:12%;
}
.contact_options {
display:flex;
flex-direction: column;
gap:1.2rem;
}
.contact_option{
background:var(--color-bg-variant);
padding:1.2rem;
border-radius:1.2rem;
text-align:center;
border:1px solid transparent;
transition: var(--transition);
}
.contact_option:hover{
background:transparent;
border-color:var(--color-primary-variant);
}
.contact_option-icon{
font-size:1.5rem;
margin-bottom:0.5rem;
}
.contact_option a{
margin-top:0.7rem;
display:inline-block;
font-size:0.8rem;
}
59 changes: 59 additions & 0 deletions inbuilt-aura-portfolio-website/components/Contact/contact.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import React from 'react'
import './contact.css'
import {HiOutlineMail} from 'react-icons/hi'
import {BsMessenger} from 'react-icons/bs'
import {AiOutlineWhatsApp} from 'react-icons/ai'
import { useRef } from 'react';
import emailjs from 'emailjs-com'
const contact = () => {
const form = useRef();

const sendEmail = (e) => {
e.preventDefault();

emailjs.sendForm('service_q1zylb7', 'template_pjj1qrv', form.current, 'yhZJ17XKfdLwMnnEE')
e.target.reset()
};

return (
<section id='contact'>
<h5>Get in Touch!</h5>
<h2>Contact ME</h2>
<div className="container contact_container">
<div className="contact_options">
<article className="contact_option">
<HiOutlineMail className='contact_option-icon'/>
<h4>Email</h4>
<h5>[email protected]</h5>
<a href="mailto:[email protected]" target="_blank">Send a Message!</a>
</article>

<article className="contact_option">
<BsMessenger className='contact_option-icon'/>
<h4>Messenger</h4>
<h5>aura.aman</h5>
<a href="https://m.me/earnest.achiever" target="_blank">Send a Message!</a>
</article>

<article className="contact_option">
<AiOutlineWhatsApp className='contact_option-icon'/>
<h4>WhatsApp</h4>
<h5>+91-9792118754</h5>
<a href="https://api.whatsapp.com/send?phone=+9792118754" target="_blank">Send a Message!</a>
</article>

</div>
{/*End of Contact Options*/}

<form ref={form} onSubmit={sendEmail}>
<input type="text" name='name' placeholder='Your Full Name' required />
<input type="email" name='email' placeholder='Your Email' required />
<textarea name="message" rows="7" placeholder='Your Message' required></textarea>
<button type="submit" className='btn btn-primary'>Send Message</button>
</form>
</div>
</section>
)
}

export default contact
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.experience_container{
display:grid;
grid-template-columns: 1fr 1fr;
gap:2rem;
}
.experience_container > div{
background: var(--color-bg-variant);
padding:2.4rem 5rem;
border-radius: 2rem;
border: 1px solid transparent;
transition:var(--transition);
}
.experience_container > div:hover{
background:transparent;
border-color:var(--color-primary-variant);
cursor: default;
}
.experience_container > div h3{
text-align:center;
margin-bottom:2rem;
color:var(--color-primary);
}
.experience_content{
display:grid;
grid-template-columns: 1fr 1fr;
row-gap:2rem;
}
.experience_details{
display:flex;
gap:1rem;
}
.experience_details-icon{
margin-top:6px;
color:var(--color-primary);
}
/*________________________Media Queries(Medium Devices)_______________________*/
@media screen and(max-width:1024px){
.experience_container{
grid-template-columns: 1fr;
}
.experience_container > div{
width:80%;
padding:2rem;
margin:0 auto;
}
.experience_content{
padding:1rem;
}
}
/*--------------------Media Queries(Small Devices)-----------------------*/
@media screen and (max-width:600px){
.experince_container{
gap:1rem;
}
.experince_container > div{
width:100%;
padding:2rem 1rem;
}
}

Loading

1 comment on commit 48eeea7

@vercel
Copy link

@vercel vercel bot commented on 48eeea7 Oct 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hackerboi – ./

hackerboi-git-master-devvsakib.vercel.app
hackerboi.vercel.app
hackerboi-devvsakib.vercel.app

Please sign in to comment.