Skip to content

Commit

Permalink
chore: reuse same styling as LP in pricing page
Browse files Browse the repository at this point in the history
  • Loading branch information
victorgaard committed Sep 27, 2024
1 parent 796f55e commit bbadd15
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/components/Pricing/index.tsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
import TableMobile from './Table/TableMobile';
import Container from '@components/Container';
import PageSection from '@components/PageSection';
import Text from '@components/Text';
import TableDesktop from './Table/TableDesktop';
import { PricingInfo } from '../../content/pricing/config';
import PricingCard from '@components/PricingCard';
import Pay from '@components/Pay';
import { Text } from '@components/v2/LandingPage/Text/Text';

const Pricing = () => {
return (
<Container>
<>
<div className="grid grid-flow-dense grid-cols-16 gap-x-16 px-8 py-80">
<div className="col-span-14 col-start-2 text-center">
<Text style="h2" className="mb-24 text-white">
Pricing You Can Get Pumped About
</Text>
<Text style="l" className="mb-76">
<Text className="mb-24">Pricing you can get pumped about</Text>
<Text variant="description" className="mb-76">
Try for free and only pay for what you use. Transparent, simple
and flexible.{' '}
and flexible.
</Text>
<div className="mb-24 mt-44 flex flex-col justify-between gap-20 lg:flex-row">
{PricingInfo.map((item, index) => {
Expand Down

0 comments on commit bbadd15

Please sign in to comment.