import { IonContent, IonHeader,IonImg, IonCard, IonCardHeader, IonCardTitle, IonPage, IonTitle, IonToolbar, IonButton, IonIcon } from '@ionic/react'; import { arrowDownCircle } from 'ionicons/icons'; import './styles/styles.css'; // This is the date that is going to appear on the // card with the Motivational message const current = new Date(); const date = `${current.toLocaleString('default', {month: 'long'}) } ${current.getDate()}`; const Home: React.FC = () => { return ( TPC ❤️ {/* Card 1 */} {date} {/* Card 2 */} {date} ); }; export default Home;