Skip to content

Commit

Permalink
feat: change premium modal ui
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Jan 13, 2024
1 parent 4113fe3 commit 7ee57cc
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions src/containers/Modals/PremiumModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
List,
ThemeIcon,
Divider,
Text,
} from "@mantine/core";
import { BsCheck } from "react-icons/bs";

Expand All @@ -18,12 +17,7 @@ export const PremiumModal: React.FC<ModalProps> = ({ opened, onClose }) => {
<Modal title="Your Plan" size="auto" opened={opened} onClose={onClose} centered zIndex={202}>
<Flex gap="lg">
<Stack gap="xs">
<Title order={3}>
Free plan
<Text size="sm" c="dimmed">
(Free)
</Text>
</Title>
<Title order={3}>Free plan</Title>
<Button variant="filled" color="dark" size="md">
Your current plan
</Button>
Expand All @@ -43,12 +37,7 @@ export const PremiumModal: React.FC<ModalProps> = ({ opened, onClose }) => {
</Stack>
<Divider color="gray" orientation="vertical" />
<Stack gap="xs">
<Title order={3}>
JSON Crack Plus
<Text size="sm" c="dimmed">
USD 7$/mo
</Text>
</Title>
<Title order={3}>JSON Crack Plus</Title>
<Button
component="a"
href="/pricing"
Expand Down

0 comments on commit 7ee57cc

Please sign in to comment.