|
|
@@ -1,8 +1,9 @@
|
|
|
import React, { Component } from "react";
|
|
|
import BasePage from "@/components/Layout/BasePage";
|
|
|
-import { Row, Col, Navbar, NavItem, NavLink, NavbarBrand, NavbarToggler, Nav, Collapse } from "reactstrap";
|
|
|
+import { Row, Col, Navbar, NavItem, NavLink, NavbarBrand, NavbarToggler, Nav, Collapse, Jumbotron } from "reactstrap";
|
|
|
import ContentWrapper from "@/components/Layout/ContentWrapper";
|
|
|
import Link from "next/link";
|
|
|
+import Login from "@/components/Main/Login";
|
|
|
|
|
|
const menu = [
|
|
|
{
|
|
|
@@ -10,7 +11,7 @@ const menu = [
|
|
|
path: "/app",
|
|
|
},
|
|
|
{
|
|
|
- title: "Membuat Laporan",
|
|
|
+ title: "Buat Laporan",
|
|
|
path: "/laporan/new",
|
|
|
},
|
|
|
{
|
|
|
@@ -59,9 +60,24 @@ class App extends Component {
|
|
|
</Collapse>
|
|
|
</Navbar>
|
|
|
<ContentWrapper>
|
|
|
- <Row>
|
|
|
- <Col lg={8} className="block-center d-block "></Col>
|
|
|
- </Row>
|
|
|
+ <Jumbotron>
|
|
|
+ <Row>
|
|
|
+ <Col lg={8} className="d-flex flex-column justify-content-center align-items-start">
|
|
|
+ <h1 className="display-4">Aplikasi Pengendalian Kelembagaan Pendidikan Tinggi (Aldila Dikti)</h1>
|
|
|
+ <p className="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
|
|
|
+ <hr className="my-4" />
|
|
|
+ <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
|
|
|
+ <p className="lead">
|
|
|
+ <Link href="/laporan/new">
|
|
|
+ <button className="btn btn-info btn-lg">Buat Laporan</button>
|
|
|
+ </Link>
|
|
|
+ </p>
|
|
|
+ </Col>
|
|
|
+ <Col>
|
|
|
+ <Login />
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ </Jumbotron>
|
|
|
</ContentWrapper>
|
|
|
</div>
|
|
|
);
|