├── inbuilt-aura-portfolio-website ├── components │ ├── Footer │ │ ├── footer.css │ │ └── footer.jsx │ ├── Header │ │ ├── CTA.jsx │ │ ├── Socialheader.jsx │ │ ├── header.jsx │ │ └── header.css │ ├── Nav │ │ ├── nav.css │ │ └── nav.jsx │ ├── Contact │ │ ├── contact.css │ │ └── contact.jsx │ ├── Portfolio │ │ ├── portfolio.css │ │ └── portfolio.jsx │ ├── testimonial │ │ ├── testimonial.css │ │ └── testimonial.jsx │ ├── About │ │ ├── about.jsx │ │ └── about.css │ ├── Experience │ │ ├── experience.css │ │ └── experience.jsx │ └── Services │ │ ├── services.css │ │ └── services.jsx ├── assets │ ├── cv.pdf │ ├── me.png │ ├── avatar1.jpg │ ├── avatar2.jpg │ ├── avatar3.jpg │ ├── avatar4.jpg │ ├── me-about.jpg │ ├── bg-texture.png │ ├── portfolio1.jpg │ ├── portfolio2.jpg │ ├── portfolio3.jpg │ ├── portfolio4.jpg │ ├── portfolio5.jpg │ └── portfolio6.jpg ├── index.js ├── index.html ├── App.jsx ├── package.json ├── index.css └── README.md ├── hacker.png ├── assets └── images │ ├── GIT.png │ ├── Vue.png │ ├── Logo.png │ ├── github.png │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ ├── Group_2.png │ ├── Group_3.png │ ├── backend.png │ ├── gitimg1.png │ ├── gitimg2.jpg │ ├── gitimg3.webp │ ├── Screenshot_13.png │ ├── soulja-boy-pepe.gif │ ├── wallpaper2you_205177.gif │ └── Computer-screen-code-glitch-animation-gif-background-free.gif ├── .github └── ISSUE_TEMPLATE │ ├── custom.md │ ├── feature_request.md │ └── bug_report.md ├── CONTRIBUTION.md ├── faq.js ├── CONTRIBUTORS.md ├── LICENSE ├── script.js ├── css ├── faq.css ├── styles.css ├── style.css.map ├── style.scss └── style.css ├── contributor-navbar ├── app.js ├── faq.html ├── README.md ├── contributors.json ├── FAQ's ├── index.html └── contributors.html /inbuilt-aura-portfolio-website/components/Footer/footer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/hacker.png -------------------------------------------------------------------------------- /assets/images/GIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/GIT.png -------------------------------------------------------------------------------- /assets/images/Vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Vue.png -------------------------------------------------------------------------------- /assets/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Logo.png -------------------------------------------------------------------------------- /assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/github.png -------------------------------------------------------------------------------- /assets/images/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/pic1.png -------------------------------------------------------------------------------- /assets/images/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/pic2.png -------------------------------------------------------------------------------- /assets/images/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/pic3.png -------------------------------------------------------------------------------- /assets/images/Group_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Group_2.png -------------------------------------------------------------------------------- /assets/images/Group_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Group_3.png -------------------------------------------------------------------------------- /assets/images/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/backend.png -------------------------------------------------------------------------------- /assets/images/gitimg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/gitimg1.png -------------------------------------------------------------------------------- /assets/images/gitimg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/gitimg2.jpg -------------------------------------------------------------------------------- /assets/images/gitimg3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/gitimg3.webp -------------------------------------------------------------------------------- /assets/images/Screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Screenshot_13.png -------------------------------------------------------------------------------- /assets/images/soulja-boy-pepe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/soulja-boy-pepe.gif -------------------------------------------------------------------------------- /assets/images/wallpaper2you_205177.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/wallpaper2you_205177.gif -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/cv.pdf -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/me.png -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/avatar1.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/avatar2.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/avatar3.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/avatar4.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/me-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/me-about.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/bg-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/bg-texture.png -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio1.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio2.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio3.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio4.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio5.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/assets/portfolio6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/inbuilt-aura-portfolio-website/assets/portfolio6.jpg -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/index.js: -------------------------------------------------------------------------------- 1 | import ReactDOM from 'react-dom' 2 | import App from './App' 3 | import './index.css' 4 | ReactDOM.render(,document.querySelector("#root")); -------------------------------------------------------------------------------- /assets/images/Computer-screen-code-glitch-animation-gif-background-free.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devvsakib/hackerboi/HEAD/assets/images/Computer-screen-code-glitch-animation-gif-background-free.gif -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Footer/footer.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import './footer.css' 3 | const footer = () => { 4 | return ( 5 |
6 | 7 |
8 | ) 9 | } 10 | 11 | export default footer 12 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | React Portfolio Website 8 | 9 | 10 |
11 | 12 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Header/CTA.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import CV from '../../assets/cv.pdf' 3 | const CTA = () => { 4 | return ( 5 |
6 | Download CV 7 | Let's Talk 8 |
9 | ) 10 | } 11 | 12 | export default CTA 13 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Header/Socialheader.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import {BsLinkedin} from 'react-icons/bs' 3 | import {FaGithub} from 'react-icons/fa' 4 | import {FiDribbble} from 'react-icons/fi' 5 | const Socialheader = () => { 6 | return ( 7 |
8 | 9 | 10 | 11 |
12 | ) 13 | } 14 | 15 | export default Socialheader -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- 1 | # Contribution Guide 2 | Please ensure your pull request adheres to the following guidelines: 3 | 4 | - Star this repo to get latest updates. 5 | - Start the Name with a capital. 6 | - Give your file a proper extension according to language. Ex: .py, .java, .js, .html etc. 7 | - Name your file related to your topic. 8 | - Put your files in correct folder like .py in Python, .js in Javascript etc. 9 | - Make sure you have entered your github - username in your file as a comment. 10 | - Make sure you have entered your name in CONTRIBUTORS.md file as mentioned (It's your responsibility). 11 | - You can also follow ME XD. 12 | 13 | Thank you for your suggestions! 14 | -------------------------------------------------------------------------------- /faq.js: -------------------------------------------------------------------------------- 1 | const faqHeaders = document.querySelectorAll(".faqs-container .faq-header"); 2 | 3 | faqHeaders.forEach((header, i) => { 4 | header.addEventListener("click", () => { 5 | header.nextElementSibling.classList.toggle("active"); 6 | 7 | const open = header.querySelector(".open"); 8 | const close = header.querySelector(".close"); 9 | 10 | if (header.nextElementSibling.classList.contains("active")) { 11 | open.classList.remove("active"); 12 | close.classList.add("active"); 13 | } else { 14 | open.classList.add("active"); 15 | close.classList.remove("active"); 16 | } 17 | }); 18 | }); 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Header/header.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import './header.css' 3 | import CTA from "./CTA" 4 | import ME from '../../assets/me.png' 5 | import Socialheader from './Socialheader' 6 | const header = () => { 7 | return ( 8 |
9 |
10 |
Hello,I'm
11 |

Aman Maddheshiya

12 |
FullStack Developer
13 | 14 | 15 |
16 | me 17 |
18 | Scroll Down 19 |
20 |
21 | ) 22 | } 23 | 24 | export default header 25 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Nav/nav.css: -------------------------------------------------------------------------------- 1 | nav{ 2 | background:rgba(0, 0, 0, 0.3); 3 | width:max-content; 4 | display:block; 5 | padding:0.7rem 1.7rem; 6 | z-index:2; 7 | position:fixed; 8 | left:50%; 9 | transform:translateX(-50%); 10 | bottom:2rem; 11 | display:flex; 12 | gap:0.8rem; 13 | border-radius:3rem; 14 | backdrop-filter: blur(15px); 15 | } 16 | nav a{ 17 | background:transparent; 18 | padding: 0.9rem; 19 | border-radius:50%; 20 | display:flex; 21 | color:var(--color-light); 22 | font-size: 1.1rem; 23 | } 24 | nav a:hover{ 25 | background:rgba(0, 0, 0, 0.3); 26 | } 27 | nav a:active{ 28 | background:var(--color-bg); 29 | color:var(--color-white); 30 | } 31 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/components/Contact/contact.css: -------------------------------------------------------------------------------- 1 | .container.contact_container { 2 | width:58%; 3 | display:grid; 4 | grid-template-columns:30% 58%; 5 | gap:12%; 6 | } 7 | .contact_options { 8 | display:flex; 9 | flex-direction: column; 10 | gap:1.2rem; 11 | } 12 | .contact_option{ 13 | background:var(--color-bg-variant); 14 | padding:1.2rem; 15 | border-radius:1.2rem; 16 | text-align:center; 17 | border:1px solid transparent; 18 | transition: var(--transition); 19 | } 20 | .contact_option:hover{ 21 | background:transparent; 22 | border-color:var(--color-primary-variant); 23 | } 24 | .contact_option-icon{ 25 | font-size:1.5rem; 26 | margin-bottom:0.5rem; 27 | } 28 | .contact_option a{ 29 | margin-top:0.7rem; 30 | display:inline-block; 31 | font-size:0.8rem; 32 | } -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | 💻 2 | 3 | # Add Name 4 | 5 |

Enter your Name, Github Link & Your E-Mail Address in the given format. Don't try to change anything else!!!

6 | | Name | Github Link | E-Mail Address | 7 | 8 | # List of Contributors 9 | 10 |

Make sure you have updated your Name, Github link & E-Mail Id (enter your e-mail just after mailto:)!!!

11 |
12 | 13 | | Name | Github Link | Email ID | 14 | | ------|----------|---------- | 15 | | DevvSakib | DevvSakib | E-Mail | 16 | | RXBlade | RXBlade | E-Mail | 17 | | NashidNoor | NashidNoor | E-Mail | 18 | -------------------------------------------------------------------------------- /inbuilt-aura-portfolio-website/App.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Header from './components/Header/header' 3 | import Nav from './components/Nav/nav' 4 | import About from './components/About/about' 5 | import Experience from './components/Experience/experience' 6 | import Services from './components/Services/services' 7 | import Portfolio from './components/Portfolio/portfolio' 8 | import Testimonial from './components/testimonial/testimonial' 9 | import Contact from './components/Contact/contact' 10 | import Footer from './components/Footer/footer' 11 | 12 | const App = () => { 13 | return ( 14 | <> 15 |
16 |