diff --git a/public/assets/people-dancing-inside-dim-room-2114365@2x.png b/public/assets/people-dancing-inside-dim-room-2114365@2x.png
new file mode 100644
index 0000000..cd95363
Binary files /dev/null and b/public/assets/people-dancing-inside-dim-room-2114365@2x.png differ
diff --git a/public/assets/smiley.jpg b/public/assets/smiley.jpg
new file mode 100644
index 0000000..9d77286
Binary files /dev/null and b/public/assets/smiley.jpg differ
diff --git a/public/assets/smiling.jpg b/public/assets/smiling.jpg
new file mode 100644
index 0000000..837c471
Binary files /dev/null and b/public/assets/smiling.jpg differ
diff --git a/src/components/CoverPhoto/CoverPhoto.css b/src/components/CoverPhoto/CoverPhoto.css
new file mode 100644
index 0000000..d4deeeb
--- /dev/null
+++ b/src/components/CoverPhoto/CoverPhoto.css
@@ -0,0 +1,26 @@
+.coverPhoto {
+ margin: 15px 0 15px 45px;
+ text-align: center;
+ border-radius: 10px 10px;
+ height: 80vh;
+ box-shadow: 0px 3px 6px #00000029 ;
+ -webkit-box-shadow: 0px 3px 6px #00000029;
+ -moz-box-shadow: 0px 3px 6px #00000029;
+}
+
+.coverText {
+ display: flex;
+ display: inline-flex;
+ margin: 45px;
+ font-size: 18px;
+ font-weight: 600;
+
+}
+
+.firstText {
+ margin-right: 10px;
+}
+
+/*.coverPhoto > img {
+ margin: 5px 0;
+}*/
\ No newline at end of file
diff --git a/src/components/CoverPhoto/CoverPhoto.stories.js b/src/components/CoverPhoto/CoverPhoto.stories.js
new file mode 100644
index 0000000..398cdd3
--- /dev/null
+++ b/src/components/CoverPhoto/CoverPhoto.stories.js
@@ -0,0 +1,22 @@
+import React from "react";
+import {storiesOf} from "@storybook/react";
+import {withInfo} from "@storybook/addon-info";
+import {withKnobs, text} from "@storybook/addon-knobs";
+import CoverPhoto from "./index";
+
+storiesOf("CoverPhoto", module)
+ .addDecorator(
+ withInfo({
+ text: "This is a CoverPhoto component"
+ })
+ )
+
+ .addDecorator(withKnobs()
+ )
+
+ .add("CoverPhoto", () => (
+