您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

page.tsx 1.1KB

123456789101112131415161718192021222324252627
  1. "use client";
  2. import { Row, Col } from 'antd';
  3. import PlanCard from '@/components/ui/PlanCard';
  4. import PageTitle from '@/components/ui/PageTitle';
  5. import AltLayout from '@/components/layout/AltLayout';
  6. import { basicPlan, standardPlan, premiumPlan } from './dummyPlan';
  7. const Pricing: React.FC = () => {
  8. return (
  9. <AltLayout header={<PageTitle backButton={true}>PREMIUM PLAN</PageTitle>}>
  10. <Row gutter={[0, 16]} className="!p-4 bg-white">
  11. <Col xs={24} md={8}>
  12. <PlanCard title="Basic" price="$5" description="Ideal for simple, entry-level AI personas" features={basicPlan} />
  13. </Col>
  14. <Col xs={24} md={8}>
  15. <PlanCard title="Standard" price="$15" description="Perfect for growing AI needs" features={standardPlan} />
  16. </Col>
  17. <Col xs={24} md={8}>
  18. <PlanCard title="Premium" price="$45" description="Best for large enterprise AI models" features={premiumPlan} />
  19. </Col>
  20. </Row>
  21. </AltLayout>
  22. );
  23. };
  24. export default Pricing;