GithubHelp home page GithubHelp logo

ramdeveloper / ramdeveloper.github.io Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 43 MB

My Github Portfolio site using ReactJS and Github pages

Home Page: https://ramdeveloper.github.io/

HTML 0.97% CSS 34.17% JavaScript 64.86%
github-page javascript react reactjs

ramdeveloper.github.io's Introduction

Table of Contents πŸ“œ



Sections πŸ”–

  • HOME
  • ABOUT
  • RESUME
    • EDUCATION
    • SKILLS
    • EXPERIENCE
    • PROJECTS
    • Achievements
  • SERVICES
    • TESTIMONIALS
  • BLOG
  • CONTACTS

Installation ⬇️

You will need to download Git and Node to run this project

Also check this out if you are new to react.

Make sure you have the latest version of both Git and Node on your computer.

node --version
git --version

Getting Started 🎯

Fork and Clone the repo

To Fork the repo click on the fork button at the top right of the page. Once the repo is forked open your terminal and perform the following commands


### Install packages from the root directory

npm install ``

Start the development server

npm start

Folder Structure πŸ“‚

β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ public
β”‚   β”œβ”€β”€ _redirects
β”‚   β”œβ”€β”€ favicon.ico
β”‚   β”œβ”€β”€ favicon.png
β”‚   β”œβ”€β”€ favicon512.png
β”‚   β”œβ”€β”€ index.html
β”‚   β”œβ”€β”€ manifest.json
β”‚   └── robots.txt
β”œβ”€β”€ src
β”‚   β”œβ”€β”€ App.css
β”‚   β”œβ”€β”€ App.js
β”‚   β”œβ”€β”€ assets
β”‚   β”‚   β”œβ”€β”€ fonts
β”‚   β”‚   β”‚   └── Bestermind
β”‚   β”‚   β”‚       └── BestermindRegular.ttf
β”‚   β”‚   β”œβ”€β”€ pdf
β”‚   β”‚   β”‚   └── resume.pdf
β”‚   β”‚   └── svg
β”‚   β”‚       β”œβ”€β”€ about
β”‚   β”‚       β”œβ”€β”€ contacts
β”‚   β”‚       β”œβ”€β”€ education
β”‚   β”‚       β”œβ”€β”€ experience
β”‚   β”‚       β”œβ”€β”€ projects
β”‚   β”‚       β”œβ”€β”€ skills
β”‚   β”‚       β”œβ”€β”€ social
β”‚   β”‚       └── testimonials
β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”œβ”€β”€ About
β”‚   β”‚   β”‚   β”œβ”€β”€ About.css
β”‚   β”‚   β”‚   └── About.js
β”‚   β”‚   β”œβ”€β”€ Achievements
β”‚   β”‚   β”‚   β”œβ”€β”€ Achievements.css
β”‚   β”‚   β”‚   └── Achievements.js
β”‚   β”‚   β”‚   └── AchievementCard.js
β”‚   β”‚   β”œβ”€β”€ BackToTop
β”‚   β”‚   β”‚   β”œβ”€β”€ BackToTop.css
β”‚   β”‚   β”‚   └── BackToTop.js
β”‚   β”‚   β”œβ”€β”€ Blog
β”‚   β”‚   β”‚   β”œβ”€β”€ Blog.css
β”‚   β”‚   β”‚   β”œβ”€β”€ Blog.js
β”‚   β”‚   β”‚   └── SingleBlog
β”‚   β”‚   β”‚       β”œβ”€β”€ SingleBlog.css
β”‚   β”‚   β”‚       └── SingleBlog.js
β”‚   β”‚   β”œβ”€β”€ Contacts
β”‚   β”‚   β”‚   β”œβ”€β”€ Contacts.css
β”‚   β”‚   β”‚   └── Contacts.js
β”‚   β”‚   β”œβ”€β”€ Education
β”‚   β”‚   β”‚   β”œβ”€β”€ Education.css
β”‚   β”‚   β”‚   β”œβ”€β”€ Education.js
β”‚   β”‚   β”‚   └── EducationCard.js
β”‚   β”‚   β”œβ”€β”€ Experience
β”‚   β”‚   β”‚   β”œβ”€β”€ Experience.css
β”‚   β”‚   β”‚   β”œβ”€β”€ Experience.js
β”‚   β”‚   β”‚   └── ExperienceCard.js
β”‚   β”‚   β”œβ”€β”€ Footer
β”‚   β”‚   β”‚   β”œβ”€β”€ Footer.css
β”‚   β”‚   β”‚   └── Footer.js
β”‚   β”‚   β”œβ”€β”€ Landing
β”‚   β”‚   β”‚   β”œβ”€β”€ Landing.css
β”‚   β”‚   β”‚   └── Landing.js
β”‚   β”‚   β”œβ”€β”€ Navbar
β”‚   β”‚   β”‚   β”œβ”€β”€ Navbar.css
β”‚   β”‚   β”‚   └── Navbar.js
β”‚   β”‚   β”œβ”€β”€ Projects
β”‚   β”‚   β”‚   β”œβ”€β”€ Projects.css
β”‚   β”‚   β”‚   β”œβ”€β”€ Projects.js
β”‚   β”‚   β”‚   └── SingleProject
β”‚   β”‚   β”‚       β”œβ”€β”€ SingleProject.css
β”‚   β”‚   β”‚       └── SingleProject.js
β”‚   β”‚   β”œβ”€β”€ Services
β”‚   β”‚   β”‚   β”œβ”€β”€ Services.css
β”‚   β”‚   β”‚   β”œβ”€β”€ Services.js
β”‚   β”‚   β”‚   └── SingleService
β”‚   β”‚   β”‚       β”œβ”€β”€ SingleService.css
β”‚   β”‚   β”‚       └── SingleService.js
β”‚   β”‚   β”œβ”€β”€ Skills
β”‚   β”‚   β”‚   β”œβ”€β”€ Skills.css
β”‚   β”‚   β”‚   └── Skills.js
β”‚   β”‚   β”œβ”€β”€ Testimonials
β”‚   β”‚   β”‚   β”œβ”€β”€ Testimonials.css
β”‚   β”‚   β”‚   └── Testimonials.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ contexts
β”‚   β”‚   └── ThemeContext.js
β”‚   β”œβ”€β”€ data
β”‚   β”‚   β”œβ”€β”€ aboutData.js
β”‚   β”‚   β”œβ”€β”€ achievementData.js
β”‚   β”‚   β”œβ”€β”€ blogData.js
β”‚   β”‚   β”œβ”€β”€ contactsData.js
β”‚   β”‚   β”œβ”€β”€ educationData.js
β”‚   β”‚   β”œβ”€β”€ experienceData.js
β”‚   β”‚   β”œβ”€β”€ headerData.js
β”‚   β”‚   β”œβ”€β”€ projectsData.js
β”‚   β”‚   β”œβ”€β”€ servicesData.js
β”‚   β”‚   β”œβ”€β”€ skillsData.js
β”‚   β”‚   β”œβ”€β”€ socialsData.js
β”‚   β”‚   β”œβ”€β”€ testimonialsData.js
β”‚   β”‚   └── themeData.js
β”‚   β”œβ”€β”€ index.css
β”‚   β”œβ”€β”€ index.js
β”‚   β”œβ”€β”€ pages
β”‚   β”‚   β”œβ”€β”€ Blog
β”‚   β”‚   β”‚   β”œβ”€β”€ BlogPage.css
β”‚   β”‚   β”‚   └── BlogPage.js
β”‚   β”‚   β”œβ”€β”€ Main
β”‚   β”‚   β”‚   └── Main.js
β”‚   β”‚   β”œβ”€β”€ Project
β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectPage.css
β”‚   β”‚   β”‚   └── ProjectPage.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ reportWebVitals.js
β”‚   β”œβ”€β”€ theme
β”‚   β”‚   β”œβ”€β”€ images.js
β”‚   β”‚   └── theme.js
β”‚   └── utils
β”‚       β”œβ”€β”€ ScrollToTop.js
β”‚       └── skillsImage.js
└── yarn.lock

Hosting 🌐

Netlify

Site Docs Demo
Netlify 3 ways to deploy React apps to Netlify Youtube

Firebase

Site Docs Demo
Firebase Deploy a React App with Firebase Youtube

Heroku

Site Docs Demo
Heroku Deploying React App on Heroku from GitHub Youtube

Github Pages

Site Docs Demo
GitHub Pages Deploying React App on GitHub Pages from GitHub Youtube

SEO πŸ•·οΈ

Search engine optimization (SEO) is the process of improving the quality and quantity of website traffic to a website or a web page from search engines.

Packages Used πŸ“¦

Client Side Packages
@material-ui/core
@material-ui/icons
axios
react-fast-marquee
react-helmet
react-icons
react-reveal
react-router-dom
react-router-hash-link
react-slick
slick-carousel
validator

APIs Used πŸ—ΊοΈ

ramdeveloper.github.io's People

Contributors

ramkumarfs avatar ramdeveloper avatar

Watchers

James Cloos avatar  avatar

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.