diff --git a/website/src/App.tsx b/website/src/App.tsx index c45eb73..1123cd4 100644 --- a/website/src/App.tsx +++ b/website/src/App.tsx @@ -42,7 +42,7 @@ export default function (props: JSX.HTMLAttributes) {
-
+ -
{props.children}
+
{props.children}
); diff --git a/website/src/Router.tsx b/website/src/Router.tsx index 23c260f..2b5d886 100644 --- a/website/src/Router.tsx +++ b/website/src/Router.tsx @@ -1,6 +1,5 @@ import { Route, Router } from "@solidjs/router"; import Index from "./pages/Index"; -import About from "./pages/About"; interface Props { root: any; @@ -10,7 +9,6 @@ export default function (props: Props) { return ( - ); } diff --git a/website/src/icons/BeakerIcon.tsx b/website/src/icons/BeakerIcon.tsx new file mode 100644 index 0000000..e9d75e3 --- /dev/null +++ b/website/src/icons/BeakerIcon.tsx @@ -0,0 +1,21 @@ +import IconProps from "./type"; + +export default function (props: IconProps) { + return ( + + + + ); +} diff --git a/website/src/icons/EyeDropperIcon.tsx b/website/src/icons/EyeDropperIcon.tsx new file mode 100644 index 0000000..d1627a7 --- /dev/null +++ b/website/src/icons/EyeDropperIcon.tsx @@ -0,0 +1,21 @@ +import IconProps from "./type"; + +export default function (props: IconProps) { + return ( + + + + ); +} diff --git a/website/src/pages/About.tsx b/website/src/pages/About.tsx deleted file mode 100644 index 60c6275..0000000 --- a/website/src/pages/About.tsx +++ /dev/null @@ -1,7 +0,0 @@ -export default function () { - return ( -
- About page -
- ); -} \ No newline at end of file diff --git a/website/src/pages/Index.tsx b/website/src/pages/Index.tsx index c3fb156..ff28fea 100644 --- a/website/src/pages/Index.tsx +++ b/website/src/pages/Index.tsx @@ -1,7 +1,28 @@ +import BeakerIcon from "../icons/BeakerIcon"; +import EyeDropperIcon from "../icons/EyeDropperIcon"; + export default function () { - return ( -
- Hello World! + return ( +
+
+
+
belum matang
- ); -} \ No newline at end of file +
+
+ +
30 °C
+
+
+ +
70 %
+
+
+
+
+
Grafik Kadar Gas
+
+
+
+ ); +}