some page section design progress

This commit is contained in:
2024-06-17 17:05:02 +02:00
parent 6ccc6082ec
commit 0cba5f1b93
7 changed files with 88 additions and 13 deletions
+14
View File
@@ -0,0 +1,14 @@
import styles from "./pageSection.module.scss";
export const PageSection = ({ heading }: any) => {
return (
<section className={styles.pageSection}>
<div className={styles.sectionHeader}>
<div className={styles.icon}>
<img src="/assets/icons/neufneuf.svg" />
</div>
<h1>{heading}</h1>
</div>
</section>
);
};