first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-14 22:02:57 -04:00
commit 5f95d857d4
783 changed files with 112323 additions and 0 deletions
@@ -0,0 +1,21 @@
import React from "react";
import styles from "@/components/Dashboard/Analytics/Welcome/Welcome.module.css";
const ProfileInfo = () => {
return (
<>
<div className={styles.welcomeBox}>
<div className={styles.welcomeContent}>
<h1>Welcome to admash Dashboard!</h1>
<p>
You have done 68% 😎 more sales today. Check your new badge in
your profile.
</p>
</div>
<img src="/images/shape-1.png" alt="shape" />
</div>
</>
);
};
export default ProfileInfo;