diff --git a/client/src/components/Canvas/views/Home.jsx b/client/src/components/Canvas/views/Home.jsx
index a04309f..76b45e5 100644
--- a/client/src/components/Canvas/views/Home.jsx
+++ b/client/src/components/Canvas/views/Home.jsx
@@ -6,6 +6,7 @@ import { DailyActivity } from "./HomeTabs/DailyActivity";
import { Gas } from "./HomeTabs/Gas";
import { Seismic } from "./HomeTabs/Seismic";
import { RemoteSensing } from "./HomeTabs/RemoteSensing";
+import { Deformation } from "./HomeTabs/Deformation"
import { CancelButton } from "../CanvasComponents/CancelButton";
import { SaveButton } from "../CanvasComponents/SaveButton";
import DeleteAllButton from "../CanvasComponents/DeleteAllButton";
@@ -161,6 +162,9 @@ export default function Home(props) {
+
+
+
diff --git a/client/src/components/Canvas/views/HomeTabs/Deformation.jsx b/client/src/components/Canvas/views/HomeTabs/Deformation.jsx
new file mode 100644
index 0000000..e20217d
--- /dev/null
+++ b/client/src/components/Canvas/views/HomeTabs/Deformation.jsx
@@ -0,0 +1,22 @@
+import { Box, Text } from "@chakra-ui/react";
+
+export function Deformation() {
+ return(
+
+
+ Deformation page coming soon.
+
+
+ );
+}
\ No newline at end of file
diff --git a/client/src/constants/viewKeys.js b/client/src/constants/viewKeys.js
index b511ae5..88fed19 100644
--- a/client/src/constants/viewKeys.js
+++ b/client/src/constants/viewKeys.js
@@ -4,6 +4,7 @@ export const DASHBOARD_TABS = [
{ value: "gas", label: "Gas" },
{ value: "seismic", label: "Seismic" },
{ value: "remote", label: "Remote Sensing" },
+ { value: "deformation", label: "Deformation" },
{ value: "daily", label: "Daily Activity" },
]