From feba827d2c01a7d0bb46ee54de974db4b3c33488 Mon Sep 17 00:00:00 2001 From: Muhammad Izza Alfiansyah Date: Wed, 10 Apr 2024 18:14:47 +0700 Subject: [PATCH] make pengaturan page --- website/src/Router.tsx | 2 ++ website/src/index.css | 4 +++ website/src/pages/Pengaturan.tsx | 48 ++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 website/src/pages/Pengaturan.tsx diff --git a/website/src/Router.tsx b/website/src/Router.tsx index a5a8c57..7f7e09d 100644 --- a/website/src/Router.tsx +++ b/website/src/Router.tsx @@ -2,6 +2,7 @@ import { Route, Router } from "@solidjs/router"; import Index from "./pages/Index"; import Pengujian from "./pages/Pengujian"; import Histori from "./pages/Histori"; +import Pengaturan from "./pages/Pengaturan"; interface Props { root: any; @@ -13,6 +14,7 @@ export default function (props: Props) { + ); } diff --git a/website/src/index.css b/website/src/index.css index ce4a8ef..d6275ab 100644 --- a/website/src/index.css +++ b/website/src/index.css @@ -6,4 +6,8 @@ * { font-family: 'Montserrat', Arial, Verdana, sans-serif; +} + +.input { + @apply border border-gray-200 rounded h-12 w-full block transition outline-none px-3; } \ No newline at end of file diff --git a/website/src/pages/Pengaturan.tsx b/website/src/pages/Pengaturan.tsx new file mode 100644 index 0000000..1e4d13b --- /dev/null +++ b/website/src/pages/Pengaturan.tsx @@ -0,0 +1,48 @@ +export default function () { + return ( +
+
Kontak Pemilik
+

+ Kontak digunakan untuk mengirimkan notifikasi sistem kepada pemilik. +

+
+
+
Email
+ +
+
+
No. Whatsapp
+ +
+
+
+
Kontrol Fermentasi
+

+ Pemilik bisa mengatur environment untuk pengendalian suhu optimal pada + fermentasi tape. +

+
+
+
+
+
Suhu Min
+ +
+
+
Suhu Max
+ +
+
+
+
+
+ +
+ ); +}