This is a cool description to help you sell this product even if the user doesn't find use for it because it's a really cool product
The Pricing Card Component is a customizable and visually appealing UI element designed for displaying pricing information for products, services, or subscriptions. It highlights the title, price, a brief description, and includes a call-to-action button. This component is ideal for use in pricing pages, service listings, or anywhere you need to present cost-related information clearly and attractively.
The component accepts the following props for customization:
<PriceCard
title="Basic Plan"
price="$9.99"
description="An affordable plan that includes all the basic features you need to get started."
label="Sign Up"
/>
To integrate the Pricing Card Component into your Vue or Nuxt project:
[
<script setup lang="ts">
interface PropsInterface {
title: string;
price: string;
description: string;
label: string;
}
defineProps<PropsInterface>();
</script>
<template>
<div class="my-md flex justify-center">
<div
class="flex w-72 flex-col justify-between rounded-lg border-2 border-black p-md text-center text-black dark:border-primary dark:text-primary"
>
<div class="flex h-1/3 flex-col">
<h3 class="m-auto text-2xl font-bold">
{{ title }}
</h3>
<h4 class="m-auto text-6xl font-bold">
{{ price }}
</h4>
</div>
<div class="flex h-2/3 flex-col justify-between">
<div class="my-md">
<p class="text-left text-base">{{ description }}</p>
</div>
<div class="mx-xs">
<AppButton
:label="label"
link="/contact"
/>
</div>
</div>
</div>
</div>
</template>