20 lines
563 B
JavaScript
20 lines
563 B
JavaScript
// PremiumWelcome.js
|
|
import React from 'react';
|
|
|
|
const PremiumWelcome = ({ nextStep }) => (
|
|
<div className="max-w-md mx-auto text-center p-6">
|
|
<h2 className="text-2xl font-semibold mb-4">Welcome to AptivaAI Premium!</h2>
|
|
<p className="mb-6">
|
|
Let's get started by gathering some quick information to personalize your experience.
|
|
</p>
|
|
<button
|
|
className="bg-blue-500 hover:bg-blue-600 text-white font-semibold py-2 px-4 rounded"
|
|
onClick={nextStep}
|
|
>
|
|
Get Started
|
|
</button>
|
|
</div>
|
|
);
|
|
|
|
export default PremiumWelcome;
|