diff --git a/components/Dialog.jsx b/components/Dialog.jsx
new file mode 100644
index 0000000..c2eac8c
--- /dev/null
+++ b/components/Dialog.jsx
@@ -0,0 +1,9 @@
+const Dialog = () => (
+
+);
+
+export default Dialog;
diff --git a/components/Modal.jsx b/components/Modal.jsx
index 574b736..1bb9cc0 100644
--- a/components/Modal.jsx
+++ b/components/Modal.jsx
@@ -55,9 +55,9 @@ const Modal = ({ open, onClose, children }) => {
ref={ref}
{...bind()}
className={classNames(
- 'fixed z-40 top-5 transform transform-gpu ease-in-out duration-300 translate w-full h-full bg-white rounded-t-lg',
+ 'fixed z-40 top-5 transform transform-gpu ranslate w-full h-full bg-white rounded-t-lg',
{
- 'transition-transform': !dragging,
+ 'ease-in-out duration-300 transition-transformation': !dragging,
}
)}
style={{
diff --git a/components/Nav.jsx b/components/Nav.jsx
index 82c8470..03e5a22 100644
--- a/components/Nav.jsx
+++ b/components/Nav.jsx
@@ -3,7 +3,7 @@ import { useEffect, useState } from 'react';
import { Plugins } from '@capacitor/core';
import Store from '../store';
-const Nav = ({ page, onShowMenu }) => {
+const Nav = ({ page }) => {
const [showMenu, setShowMenu] = useState(false);
useEffect(() => {
@@ -23,7 +23,11 @@ const Nav = ({ page, onShowMenu }) => {
+ Store.update(s => {
+ s.showMenu = true;
+ })
+ }
>
{/* Mobile menu button*/}