+ This first course in data science introduces students to data exploration, statistical inference,
+ and prediction. It introduces Python programming language as a tool for tabular data manipulation,
+ visualization, and simulation. Through homework assignments and projects, students are given an
+ opportunity to develop their analytical skills while working with real-world datasets from a variety
+ of domains.
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/components/HomepageFeatures/styles.module.css b/src/components/HomepageFeatures/styles.module.css
index b248eb2e..923e2a29 100644
--- a/src/components/HomepageFeatures/styles.module.css
+++ b/src/components/HomepageFeatures/styles.module.css
@@ -1,11 +1,45 @@
-.features {
+.container {
+ margin: 2rem auto;
+ max-width: 800px;
+}
+
+.course {
display: flex;
- align-items: center;
- padding: 2rem 0;
- width: 100%;
+ align-items: baseline; /* Aligns text of different font sizes properly */
+}
+
+.course h1 {
+ font-size: 2rem;
+ font-weight: bold;
+ margin-right: 1rem; /* Adds space between the title and the (4) */
+}
+
+.course p {
+ font-size: 1.2rem;
+ margin-left: 0;
+ margin-right: 0;
}
-.featureSvg {
- height: 200px;
- width: 200px;
+.description {
+ font-size: 1.1rem;
+ line-height: 1.6;
+ margin-top: 1rem;
}
+
+.imageContainer {
+ margin-top: 1rem;
+ text-align: center;
+}
+
+.image {
+ max-width: 100%;
+ height: auto;
+ border-radius: 4px;
+ padding: 5px;
+}
+
+.code {
+ font-family: 'Courier New', Courier, monospace;
+ padding: 2px 4px;
+ border-radius: 4px;
+}
\ No newline at end of file
diff --git a/src/pages/markdown-page.md b/src/pages/index.md
similarity index 100%
rename from src/pages/markdown-page.md
rename to src/pages/index.md
diff --git a/static/img/dsc10graph.png b/static/img/dsc10graph.png
new file mode 100644
index 00000000..9b33bf4d
Binary files /dev/null and b/static/img/dsc10graph.png differ