pricing.tsx 823 B

1234567891011121314151617181920212223242526272829303132333435
  1. import React from "react";
  2. import { Button } from "@mantine/core";
  3. import { Footer } from "src/components/Footer";
  4. import { PricingCards } from "src/containers/PricingCards";
  5. import styled from "styled-components";
  6. const StyledPageWrapper = styled.div`
  7. padding: 5%;
  8. `;
  9. const StyledHeroSection = styled.section`
  10. display: flex;
  11. justify-content: center;
  12. flex-direction: column;
  13. align-items: center;
  14. `;
  15. const Pricing = () => {
  16. return (
  17. <>
  18. <StyledPageWrapper>
  19. <Button component="a" href="/">
  20. &lt; Go Back
  21. </Button>
  22. <StyledHeroSection>
  23. <img src="assets/icon.png" alt="json crack" width="400" />
  24. <h1>Premium</h1>
  25. </StyledHeroSection>
  26. <PricingCards />
  27. </StyledPageWrapper>
  28. <Footer />
  29. </>
  30. );
  31. };
  32. export default Pricing;