diff --git a/marketing/src/containers/Pricing/index.tsx b/marketing/src/containers/Pricing/index.tsx
index f87ddd4e..e021f1cc 100755
--- a/marketing/src/containers/Pricing/index.tsx
+++ b/marketing/src/containers/Pricing/index.tsx
@@ -21,7 +21,7 @@ import {
} from './pricing.style';
import { useTranslation } from 'next-i18next';
import { StaticImageData } from 'next/image';
-import styled from 'styled-components';
+import { useConfig } from '@/common/hooks/useConfig';
type Pricing = {
id: number;
@@ -110,6 +110,7 @@ function toPrice(
const Pricing = () => {
const [isMonthly, setIsMonthly] = useState(true);
const { t } = useTranslation();
+ const { appUrl } = useConfig();
const handleToggle = () => {
setIsMonthly(!isMonthly);
@@ -203,13 +204,21 @@ const Pricing = () => {
{/* */}
-
+ target="_blank"
+ rel="noreferrer"
+ >
+
+
{/*
{priceTable.details.label}{' '}
diff --git a/marketing/src/containers/Pricing/pricing.style.tsx b/marketing/src/containers/Pricing/pricing.style.tsx
index f8e179de..909da461 100755
--- a/marketing/src/containers/Pricing/pricing.style.tsx
+++ b/marketing/src/containers/Pricing/pricing.style.tsx
@@ -184,7 +184,7 @@ export const PriceTable = styled.div`
}
}
button {
- justify-self: flex-end;
+ justify-self: center;
border-radius: 10px;
font-weight: 700;
font-size: 15px;
@@ -202,6 +202,7 @@ export const PriceTable = styled.div`
}
}
a {
+ justify-content: center;
color: ${themeGet('colors.textColorLight')};
font-size: 14px;
line-height: 42px;