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
| <template> | |
| <div class="card mt-4"> | |
| <div class="card-header">HOME</div> | |
| <div class="card-body"><h4>Ini Halaman Home</h4></div> | |
| <div class="card-body"> | |
| Lorem Ipsum is simply dummy text of the printing and typesetting industry. | |
| Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, | |
| when an unknown printer took a galley of type and scrambled it to make | |
| a type specimen book. It has survived not only five centuries, but also the | |
| leap into electronic typesetting, remaining essentially unchanged. |
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
| <template> | |
| <div class="card mt-4"> | |
| <div class="card-header">ABOUT</div> | |
| <div class="card-body"><h4>Ini Halaman About</h4></div> | |
| <div class="card-body"> | |
| Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in | |
| a piece of classical Latin literature from 45 BC, making it over 2000 years old. | |
| Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, | |
| looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, | |
| and going through the cites of the word in classical literature, discovered |
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
| <template> | |
| <div class="card mt-4"> | |
| <div class="card-header">CONTACT</div> | |
| <div class="card-body"><h4>Ini Halaman Contact</h4></div> | |
| <div class="card-body"> | |
| It is a long established fact that a reader will be distracted by the readable content | |
| of a page when looking at its layout. The point of using Lorem Ipsum is that it has | |
| a more-or-less normal distribution of letters, as opposed to using 'Content here, | |
| content here', making it look like readable English. Many desktop publishing packages | |
| and web page editors now use Lorem Ipsum as their default model text, and a search |
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
| Route::get('/{any}', function () { | |
| return view('layouts.vue'); | |
| })->where('any', '.*'); |
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.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Laravel + Vuejs</title> | |
| <link rel="stylesheet" href="{{ mix('css/app.css') }}"> | |
| </head> | |
| <body> |
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> | |
| <title>iPortfolio Bootstrap Template</title> | |
| <meta charset="utf-8" /> | |
| <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <meta name="theme-color" content="#000000" /> | |
| <meta | |
| name="description" |
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 Sidebar from './components/Sidebar'; | |
| import Home from './components/Home'; | |
| import About from './components/About'; | |
| import Resume from './components/Resume'; | |
| import Portofolio from './components/Portofolio'; | |
| import Services from './components/Services'; | |
| import Contact from './components/Contact'; | |
| import { BrowserRouter as Router } from 'react-router-dom'; | |
| import $ from 'jquery'; |
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="hero" className="d-flex flex-column justify-content-center align-items-center"> | |
| <div className="hero-container" data-aos="fade-in"> | |
| <h1>Alex Smith</h1> | |
| <p>I'm <span className="typed" data-typed-items="Designer, Developer, Freelancer, Photographer"></span></p> |
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"> | |
| <section id="about" className="about"> | |
| <div className="container"> | |
| <div className="section-title"> |