17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
import React from 'react';
|
|
import { motion } from 'framer-motion';
|
|
|
|
const WelcomeMessage = () => {
|
|
return (
|
|
<motion.p
|
|
className='text-sm text-white leading-5 w-full'
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
transition={{ duration: 0.5, delay: 0.8 }}
|
|
>
|
|
Write in the chat what you want to create.
|
|
</motion.p>
|
|
);
|
|
};
|
|
|
|
export default WelcomeMessage;
|