1234567891011121314151617181920212223242526272829303132333435 |
- import React from "react";
- import { Button } from "@mantine/core";
- import { Footer } from "src/components/Footer";
- import { PricingCards } from "src/containers/PricingCards";
- import styled from "styled-components";
- const StyledPageWrapper = styled.div`
- padding: 5%;
- `;
- const StyledHeroSection = styled.section`
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- `;
- const Pricing = () => {
- return (
- <>
- <StyledPageWrapper>
- <Button component="a" href="/">
- < Go Back
- </Button>
- <StyledHeroSection>
- <img src="assets/icon.png" alt="json crack" width="400" />
- <h1>Premium</h1>
- </StyledHeroSection>
- <PricingCards />
- </StyledPageWrapper>
- <Footer />
- </>
- );
- };
- export default Pricing;
|