update pay function
This commit is contained in:
2
src/components/Subscription/SubscriptionContentNew.d.ts
vendored
Normal file
2
src/components/Subscription/SubscriptionContentNew.d.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
// Type declarations for SubscriptionContentNew component
|
||||||
|
export {};
|
||||||
@@ -693,9 +693,8 @@ export default function SubscriptionContentNew() {
|
|||||||
<motion.div
|
<motion.div
|
||||||
key={plan.name}
|
key={plan.name}
|
||||||
initial={{ opacity: 0, y: 50 }}
|
initial={{ opacity: 0, y: 50 }}
|
||||||
whileInView={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
transition={{ delay: index * 0.1, duration: 0.6 }}
|
transition={{ delay: index * 0.1, duration: 0.6 }}
|
||||||
viewport={{ once: true, amount: 0.3 }}
|
|
||||||
>
|
>
|
||||||
<Box
|
<Box
|
||||||
position="relative"
|
position="relative"
|
||||||
@@ -920,9 +919,8 @@ export default function SubscriptionContentNew() {
|
|||||||
{/* FAQ 区域 */}
|
{/* FAQ 区域 */}
|
||||||
<motion.div
|
<motion.div
|
||||||
initial={{ opacity: 0 }}
|
initial={{ opacity: 0 }}
|
||||||
whileInView={{ opacity: 1 }}
|
animate={{ opacity: 1 }}
|
||||||
transition={{ duration: 0.6 }}
|
transition={{ duration: 0.6 }}
|
||||||
viewport={{ once: true, amount: 0.2 }}
|
|
||||||
>
|
>
|
||||||
<Box
|
<Box
|
||||||
p={8}
|
p={8}
|
||||||
|
|||||||
Reference in New Issue
Block a user