25 lines
984 B
React
25 lines
984 B
React
import React from 'react'
|
|
|
|
export default function SubscribeInfo() {
|
|
|
|
return <>
|
|
<div className="row">
|
|
<div className="col-md-12 col-12 selects-contant">
|
|
<div className="card card-statistics">
|
|
<div className="card-body">
|
|
<div className="form-group mb-0">
|
|
Your subscription terms outline the details of your plan, including billing frequency,
|
|
renewal dates, payment methods, and cancellation policies. Please review your subscription
|
|
agreement for information on your current plan, how to manage or update your subscription,
|
|
and any applicable fees or renewal conditions. Contact support if you have questions about
|
|
your subscription.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</>
|
|
|
|
} |