This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Resume extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
| <section id="resume" className="resume"> | |
| <div className="container"> | |
| <div className="section-title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Portofolio extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
| <section id="portfolio" className="portfolio section-bg"> | |
| <div className="container"> | |
| <div className="section-title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { Link } from 'react-router-dom'; | |
| class Services extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
| <section id="services" className="services"> | |
| <div className="container"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Contact extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
| <section id="contact" className="contact"> | |
| <div className="container"> | |
| <div className="section-title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <meta name="theme-color" content="#000000" /> | |
| <meta name="description" content="Web site created using create-react-app" /> | |
| <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | |
| <!-- Favicons --> | |
| <link href="%PUBLIC_URL%/assets/img/favicon.png" rel="icon"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React,{Component} from 'react'; | |
| import Header from './components/Header'; | |
| import Home from './components/Home'; | |
| import About from './components/About'; | |
| import Services from './components/Services'; | |
| import Portofolio from './components/Portofolio'; | |
| import Team from './components/Team'; | |
| import Contact from './components/Contact'; | |
| import Footer from './components/Footer'; | |
| import { BrowserRouter as Router } from 'react-router-dom'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Header extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <header id="header"> | |
| <div className="container-fluid"> | |
| <div id="logo" className="pull-left"> | |
| <h1><a href="#intro" className="scrollto">BizPage</a></h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Home extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <section id="intro"> | |
| <div className="intro-container"> | |
| <div id="introCarousel" className="carousel slide carousel-fade" data-ride="carousel"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class About extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| class Services extends Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <main id="main"> | |
| <section id="services"> | |
| <div className="container"> |