many fixes and pages
diff --git a/Components/CardRow.js b/Components/CardRow.js
new file mode 100644
index 0000000..d742944
--- /dev/null
+++ b/Components/CardRow.js
@@ -0,0 +1,23 @@
+import { Component } from "react";
+import Styles from '../styles/cardrow.module.css';
+
+class CardRow extends Component {
+	constructor(props) {
+		super(props);
+	}
+
+
+	render() {
+		return (
+            <div className={Styles.container}>
+				{
+					this.props.tiles.map((item, index) => {
+						return <div className={Styles.item} key={index}>{item}</div>
+					})
+				}
+			</div>
+        )
+	}
+}
+
+export default CardRow;
\ No newline at end of file