Skip to content

Commit ea9284a

Browse files
committed
Menambahkan link ke situs petunjuk penggunaan app
1 parent 402474b commit ea9284a

File tree

5 files changed

+36
-6
lines changed

5 files changed

+36
-6
lines changed

public/public/index.html

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<!--
2+
3+
4+
5+
6+
7+
8+
Tidak ada apa-apa disini
9+
10+
11+
12+
13+
14+
-->
115
<!DOCTYPE html>
216
<html lang="en">
317
<head>
@@ -21,7 +35,7 @@
2135
work correctly both with client-side routing and a non-root public URL.
2236
Learn how to configure a non-root public URL by running `npm run build`.
2337
-->
24-
<title>React App</title>
38+
<title>Tumblr MK1 App</title>
2539
</head>
2640
<body>
2741
<noscript>You need to enable JavaScript to run this app.</noscript>

public/src/pages/Doctor/Layout.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Box, Flex } from "../../components/Grid"
22
import { Helmet } from "react-helmet";
3-
import { Button } from "@blueprintjs/core";
3+
import { AnchorButton, Button } from "@blueprintjs/core";
44
import { useHistory } from "react-router-dom";
55
import { List } from "./List";
66

@@ -35,6 +35,14 @@ export const Layout = () => {
3535
fontSize: 4,
3636
}}
3737
>Patient Activity</Box>
38+
<AnchorButton
39+
href="https://smartmedicaltumbler.wordpress.com/"
40+
target="_blank"
41+
minimal={true}
42+
large={true}
43+
icon="help"
44+
rel="noreferrer"
45+
/>
3846
<Button
3947
minimal={true}
4048
large={true}

public/src/pages/Landing.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ export const Landing = () => {
2626
}}
2727
>Selamat Datang</Box>
2828
<Box
29-
as="p"
3029
sx={{
3130
mt: 5,
3231
mx: 3,
3332
fontFamily: "monospace",
3433
color: "gray.4"
3534
}}
3635
>
37-
Project ini diperuntukan kepada dokter dan pasien sebagai monitor perkembangan pasien dengan menganalisa aktifitas frekuensi obat yang diminum.
36+
<p>Project ini diperuntukan kepada dokter dan pasien sebagai monitor perkembangan pasien dengan menganalisa aktifitas frekuensi obat yang diminum.</p>
37+
<p>Baca petunjuk <a href="https://smartmedicaltumbler.wordpress.com/" rel="noreferrer" target="_blank">disini</a> sebelum mengoperasikan.</p>
3838
</Box>
3939
<Box sx={{ px: 3, my: 3, mt: 5, }}>
4040
<Button

public/src/pages/Login.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { Formik } from "formik";
99

1010
const Schema = Yup.object().shape({
1111
email: Yup.string().required("Fill with your email."),
12-
password: Yup.string().required("Fill with your email."),
12+
password: Yup.string().required("Fill with your password."),
1313
})
1414

1515
export const Login = () => {

public/src/pages/Patient.Settings/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Helmet } from "react-helmet";
22
import { useHistory } from "react-router-dom";
3-
import { Button } from "@blueprintjs/core";
3+
import { AnchorButton, Button } from "@blueprintjs/core";
44
import { Box } from "../../components/Grid"
55
import { User } from "./User";
66
import { Alarm } from "./Alarm";
@@ -39,6 +39,14 @@ export const Settings = () => {
3939
fontSize: 4,
4040
}}
4141
>Settings</Box>
42+
<AnchorButton
43+
href="https://smartmedicaltumbler.wordpress.com/"
44+
target="_blank"
45+
minimal={true}
46+
large={true}
47+
icon="help"
48+
rel="noreferrer"
49+
/>
4250
<Button
4351
minimal={true}
4452
large={true}

0 commit comments

Comments
 (0)