diff --git a/weather_app/app/components/pressure/Pressure.tsx b/weather_app/app/components/pressure/Pressure.tsx
new file mode 100644
index 0000000..38ac02a
--- /dev/null
+++ b/weather_app/app/components/pressure/Pressure.tsx
@@ -0,0 +1,33 @@
+"use client"
+import { useGlobalContext } from '@/app/context/globalContext';
+import { Skeleton } from '@/components/ui/skeleton';
+import React from 'react'
+import { LiaCloudscale } from "react-icons/lia";
+
+const Pressure = () => {
+ const {forecast} = useGlobalContext();
+ if(!forecast || !forecast?.main || !forecast?.main?.pressure){
+ return
{Math.round(pressure * 0.0295)} inHg
+{pressureData(pressure)}
+