many fixes and pages
diff --git a/Components/SectionHeading.js b/Components/SectionHeading.js
new file mode 100644
index 0000000..9bc20a0
--- /dev/null
+++ b/Components/SectionHeading.js
@@ -0,0 +1,17 @@
+import { Component } from "react";
+import Styles from '../styles/sectionheading.module.css';
+
+class CardRow extends Component {
+	constructor(props) {
+		super(props);
+	}
+
+
+	render() {
+		return (
+            <h1 className={Styles.title}>{this.props.title}</h1>
+        )
+	}
+}
+
+export default CardRow;
\ No newline at end of file