diff --git a/src/component/subscribe/Subscribe.jsx b/src/component/subscribe/Subscribe.jsx
new file mode 100644
index 0000000..94b218a
--- /dev/null
+++ b/src/component/subscribe/Subscribe.jsx
@@ -0,0 +1,90 @@
+import React from 'react'
+import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS";
+import getImage from "../../utils/getImage";
+import { getSubscriptions } from '../../services/services';
+import { useQuery } from '@tanstack/react-query';
+import queryKeys from '../../services/queryKeys';
+import siteLinks from "../../links/siteLinks";
+import { Link, useNavigate } from 'react-router-dom'
+
+export default function Subscribe() {
+ const navigate = useNavigate()
+ const pricingFields ={
+ starter: { name: 'Starter', price: 5.99, active: true },
+ basic: { name: 'Basic', price: 12.99, active: true },
+ premium: { name: 'Premium', price: 20.00, active: true },
+ }
+
+ const {data, isFetching, isError, error} = useQuery({
+ queryKey: queryKeys.subscriptions,
+ queryFn: () => {
+ let reqData = {
+ token: localStorage.getItem('token'), // USER TOKEN
+ uid: localStorage.getItem('uid') // USER UID
+ }
+ return getSubscriptions(reqData)
+ }
+ })
+
+ const currentSubscription = data?.data?.current_product
+ const otherSubscriptions = data?.data?.options
+ console.log('urlData', data?.data)
+
+ return (
+ <>
+
Loading...
+{error.message}
+/ Monthly
+