Skip to content

Instantly share code, notes, and snippets.

View blogcacanid's full-sized avatar

Rony Chandra Kudus blogcacanid

  • cacan.id
  • Jakarta
View GitHub Profile
@blogcacanid
blogcacanid / Home.vue
Created April 21, 2020 01:33
Home.vue Integrasi Laravel 7 Dan Vue.js
<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.
@blogcacanid
blogcacanid / About.vue
Created April 21, 2020 01:34
About.vue Integrasi Laravel 7 Dan Vue.js
<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
@blogcacanid
blogcacanid / Contact.vue
Created April 21, 2020 01:34
Contact.vue Integrasi Laravel 7 Dan Vue.js
<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
@blogcacanid
blogcacanid / web.php
Created April 21, 2020 01:35
web.php Integrasi Laravel 7 Dan Vue.js
Route::get('/{any}', function () {
return view('layouts.vue');
})->where('any', '.*');
@blogcacanid
blogcacanid / vue.blade.php
Created April 21, 2020 01:37
vue.blade.php Integrasi Laravel 7 Dan Vue.js
<!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>
@blogcacanid
blogcacanid / index.html
Created April 23, 2020 17:59
index.html iPortofolio React JS
<!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"
@blogcacanid
blogcacanid / App.js
Created April 23, 2020 18:01
App.js iPortofolio React JS
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';
@blogcacanid
blogcacanid / Sidebar.jsx
Created April 23, 2020 18:03
Sidebar.jsx iPortofolio React JS
import React, { Component } from 'react';
import { Link } from 'react-router-dom';
class Sidebar extends Component {
render() {
return (
<React.Fragment>
<button type="button" className="mobile-nav-toggle d-xl-none"><i className="icofont-navigation-menu"></i></button>
<header id="header">
<div className="d-flex flex-column">
@blogcacanid
blogcacanid / Home.jsx
Last active April 23, 2020 18:04
Home.jsx iPortofolio React JS
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>
@blogcacanid
blogcacanid / About.jsx
Created April 23, 2020 18:14
About.jsx iPortofolio React JS
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">