diff --git a/.gitignore b/.gitignore
index 640dcc1..51080ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,9 @@
# Created by https://www.toptal.com/developers/gitignore/api/sass,vim,osx
# Edit at https://www.toptal.com/developers/gitignore?templates=sass,vim,osx
+*.html
+*.css
+
### OSX ###
# General
.DS_Store
diff --git a/_share/media/img/png/background_layers_3.png b/_share/media/img/png/background_layers_3.png
deleted file mode 100644
index 9649788..0000000
Binary files a/_share/media/img/png/background_layers_3.png and /dev/null differ
diff --git a/_share/media/sass/_tables.sass b/_share/media/sass/_tables.sass
deleted file mode 100644
index 653b3a7..0000000
--- a/_share/media/sass/_tables.sass
+++ /dev/null
@@ -1,23 +0,0 @@
-// Quotes Table Style
-.quotes
- border-collapse: collapse
- width: 8em // Set the width to 8em for a much shorter table
- margin: 20px 0
- border: none // Ensure no borders are applied to the table
-
- td
- padding: 10px 0
- vertical-align: top
- border: none // Remove borders between rows
-
- td:first-child
- text-align: left
- font-weight: bold
-
- td:last-child
- text-align: right
- font-style: italic
- &:before
- content: '“'
- &:after
- content: '”'
diff --git a/_share/media/sass/_variables.sass b/_share/media/sass/_variables.sass
deleted file mode 100644
index d80ec7a..0000000
--- a/_share/media/sass/_variables.sass
+++ /dev/null
@@ -1,57 +0,0 @@
-@use "sass:map"
-
-// Color Variables
-$primary-color: #c0392b // Darker red for main headers
-$secondary-color: #2c3e50 // Darker navy blue for headers
-$tertiary-color: #27ae60 // Darker green for subheaders
-$quaternary-color: #7d3c98 // Darker purple for smaller headers
-$link-color-primary: #d35400 // Darker and more saturated orange for primary links
-$link-color-secondary: #1f618d // Darker and more saturated blue for secondary links
-$background-color: #e5e5e5 // Slightly darker background
-$text-color: #2c3e50 // Darker text color for better contrast
-$table-header-bg: #b9770e // Even darker shade of orange for table headers
-$table-border-color: #aaa // Darker border color
-
-// Header Sizes and Colors Map
-$header-styles: (h1: (size: 2em, color: $primary-color, border-size: 2px))
-$header-styles: map.set($header-styles, h2, (size: 1.75em, color: $secondary-color, border-size: 2px))
-$header-styles: map.set($header-styles, h3, (size: 1.3em, color: $tertiary-color, border-size: 1px))
-$header-styles: map.set($header-styles, h4, (size: 1.25em, color: $quaternary-color, border-size: 1px))
-
-// Font Variables
-$body-font: 'Fira Mono', monospace
-$header-font: 'Roboto', sans-serif
-
-// Table Style Variables
-$table-padding: 10px
-$code-bg-color: #d3d3d3 // Darker code background color
-$code-font-color: $text-color
-$code-border-radius: 5px
-$list-padding-left: 20px
-
-// Link Style Mixins
-@mixin link-primary
- color: $link-color-primary
- text-decoration: none
-
- &:hover
- color: darken($link-color-primary, 10%)
- text-decoration: underline
-
-@mixin link-secondary
- color: $link-color-secondary
- text-decoration: underline
-
- &:hover
- color: lighten($link-color-secondary, 10%)
-
-@mixin link-inverse
- color: white
- background-color: $link-color-primary
- padding: 2px 4px
- text-decoration: none
- border-radius: 3px
-
- &:hover
- background-color: darken($link-color-primary, 10%)
- color: white
diff --git a/_share/media/sass/theme-business.sass b/_share/media/sass/theme-business.sass
deleted file mode 100644
index c12f8f9..0000000
--- a/_share/media/sass/theme-business.sass
+++ /dev/null
@@ -1,105 +0,0 @@
-@import 'variables'
-
-// Base body styles
-body
- font-family: $body-font
- font-size: 16px
- line-height: 1.6
- color: $text-color
- background-color: $background-color
-
-// Headers
-@each $header, $props in $header-styles
- #{$header}
- font-family: $header-font
- font-weight: bold
- color: map-get($props, color)
- font-size: map-get($props, size)
- margin-top: 20px
- margin-bottom: 10px
-
-// Default Link Style (Primary)
-a
- @include link-primary
-
-// Specific Link Styles
-a.secondary
- @include link-secondary
-
-a.inverse
- @include link-inverse
-
-h3
- border-top: solid 1px $tertiary-color
-
-h4 a
- margin-left: 2em
- @include link-secondary
-
-// Tables
-table
- width: 100%
- border-collapse: collapse
- margin: 20px 0
- font-size: 14px
-
-th, td
- padding: $table-padding
- text-align: left
- border-bottom: 1px solid $table-border-color
-
-th
- background-color: $table-header-bg
- color: white
-
-tr:nth-child(even)
- background-color: lighten($table-border-color, 20%)
-
-// Special Classes
-.positives-negatives
- th, td
- text-align: center
- padding: 12px
- tr:nth-child(even)
- background-color: lighten($tertiary-color, 30%)
- th
- background-color: $tertiary-color
- color: white
-
-.tax-bracket
- th, td
- padding: 8px
- text-align: right
- th
- background-color: $primary-color
- color: white
-
-.ip-recap
- th, td
- padding: 10px
- text-align: left
- th
- background-color: $quaternary-color
- color: white
-
-// Code Blocks
-pre, code
- background-color: $code-bg-color
- padding: 10px
- border-radius: $code-border-radius
- font-family: $body-font
- color: $code-font-color
- overflow-x: auto
- font-size: 14px
-
-// Lists
-ul, ol
- margin-left: $list-padding-left
- padding-left: $list-padding-left
- list-style-position: inside
-
-li
- margin-bottom: 5px
-
-img
- width: 20em
diff --git a/mba/ch05.org b/_subsections/business-knowledge/ch05.org
similarity index 96%
rename from mba/ch05.org
rename to _subsections/business-knowledge/ch05.org
index 1f45019..c9c7d8b 100644
--- a/mba/ch05.org
+++ b/_subsections/business-knowledge/ch05.org
@@ -1,7 +1,7 @@
#+title: How to Legally Protect Your Company
#+HTML_HEAD:
-#+HTML_HEAD:
-#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
[[./../mba-main.org][Business TOC]]
diff --git a/mba/ch07.org b/_subsections/business-knowledge/ch07.org
similarity index 100%
rename from mba/ch07.org
rename to _subsections/business-knowledge/ch07.org
diff --git a/mba/ch13.org b/_subsections/business-knowledge/ch13.org
similarity index 100%
rename from mba/ch13.org
rename to _subsections/business-knowledge/ch13.org
diff --git a/_subsections/marketing-knowledge/community.org b/_subsections/marketing-knowledge/community.org
new file mode 100644
index 0000000..71cb52a
--- /dev/null
+++ b/_subsections/marketing-knowledge/community.org
@@ -0,0 +1,10 @@
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+title: marketing knowledge: community
+
+
+[[../../marketing-knowledge.org][
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+title: marketing knowledge: hustle
+
+
+[[../../marketing-knowledge.org][
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+title: marketing knowledge: intro
+
+
+[[../../marketing-knowledge.org][
+#+HTML_HEAD:
+
+* Playlist
+1. [[https://youtu.be/9VlvbpXwLJs?si=VD9PzhAxTpyr_a4Q][intro]]
+2. [[https://youtu.be/9VlvbpXwLJs?si=Or7367XBK0RmkmFz&t=177][how to start a business with no money]]
+3. [[https://youtu.be/9VlvbpXwLJs?si=PSYS3MlOLMfZohKD&t=685][how to win]]
+4. [[https://youtu.be/9VlvbpXwLJs?si=5ZaeaPZVMI08BmdO&t=1054][how to lose]]
+5. [[https://youtu.be/9VlvbpXwLJs?si=t4GLX0FFa9UEjf7t&t=1244][how to do a mind map (business plan)]]
+6. [[https://youtu.be/9VlvbpXwLJs?si=DDU3SVq1fpQb_rTu&t=1695][how to find purpose]]
+7. [[https://youtu.be/9VlvbpXwLJs?si=sbq9doa9B3eMba8l&t=2074][how to find a co-founder]]
+8. [[https://youtu.be/9VlvbpXwLJs?si=JiJPrRaMpcj3eHMx&t=2427][how to sell]]
+9. [[https://youtu.be/9VlvbpXwLJs?si=gFv4zoiRQTB-TK-A&t=2935][how to market your business]]
+10. [[https://youtu.be/9VlvbpXwLJs?si=Bx2gEijLb39D_AdN&t=3668][how to pr your business]]
+11. [[https://youtu.be/9VlvbpXwLJs?si=RyYSd6if8-zWtQOB&t=4048][how to get an investor]]
+12. [[https://youtu.be/9VlvbpXwLJs?si=b4DJewxs3EolxPLg&t=5002][how to get sponsors]]
+13. [[https://youtu.be/9VlvbpXwLJs?si=w8CJzPxESzXmVzy2&t=5565][how to build a brand]]
+14. [[https://youtu.be/9VlvbpXwLJs?si=dcuuVCk4fLDfjBwA&t=6166][how to hire grow and build]]
+15. [[https://youtu.be/9VlvbpXwLJs?si=uGvdyKOcyBtyMIzn&t=6751][how to fire someone]]
+16. [[https://youtu.be/9VlvbpXwLJs?si=09yKR2NCMlmuBgCC&t=7107][how to go global]]
+17. [[https://youtu.be/9VlvbpXwLJs?si=3Tzk-xwuAQLVP2Li&t=7322][how to get a mentor]]
+18. [[https://youtu.be/9VlvbpXwLJs?si=0fGaH5YXSqwiOYKS&t=7717][how equity works]]
+19. [[https://youtu.be/9VlvbpXwLJs?si=VkT_M1gLCi-p0JvK&t=8393][how to sell your business]]
diff --git a/marketing-knowledge.org b/marketing-knowledge.org
new file mode 100644
index 0000000..85c3fa0
--- /dev/null
+++ b/marketing-knowledge.org
@@ -0,0 +1,28 @@
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+#+HTML_HEAD:
+
+#+title: 30 Years of Marketing Knowledge in 53 Minutes
+
+Link: [[https://youtu.be/QIQYzi7IPGk?si=BK4tOS2EBDumkHtZ&t=1][30 Years of Marketing Research]]
+
+* Notes
+** [[./_subsections/marketing-knowledge/intro.org][intro]]
+** [[./_subsections/marketing-knowledge/hustle.org][Hustle Marketing]]
+** [[./_subsections/marketing-knowledge/community.org][Community Marketing]]
+** Social Marketing
+
+
+* Contents
+
+#+attr_html: :class contents
+1. [[https://youtu.be/QIQYzi7IPGk?si=BK4tOS2EBDumkHtZ&t=1][intro]]
+2. [[https://youtu.be/QIQYzi7IPGk?si=E-j1eo3pAqvCQJbn&t=112][Hustle Marketing]]
+3. [[https://www.youtube.com/watch?v=QIQYzi7IPGk&t=1796s][Community marketing]] *current*
+4. [[https://youtu.be/QIQYzi7IPGk?si=zd0AGcjKoAlInyGV&t=720][Social marketing]]
+5. [[https://youtu.be/QIQYzi7IPGk?si=iHghg-kvqH1rZemS&t=1032][Profitable Marketing]]
+6. [[https://youtu.be/QIQYzi7IPGk?si=ro_r9JrriqdGJs2M&t=1456][Partner Marketing]]
+7. [[https://youtu.be/QIQYzi7IPGk?si=acmLYs_MLxzE-Gf5&t=1937][Data Marketing]]
+8. [[https://youtu.be/QIQYzi7IPGk?si=qQjo0XqWwSf8r0tt&t=2279][PR Marketing]]
+9. [[https://youtu.be/QIQYzi7IPGk?si=RPJ9rDZyY8O9Rcat&t=2701][Brand Marketing]]
diff --git a/mba-main.org b/mba-main.org
deleted file mode 100644
index 13b5dd0..0000000
--- a/mba-main.org
+++ /dev/null
@@ -1,11 +0,0 @@
-#+title: An Entire MBA in 1 Course - Chris Haroun
-#+HTML_HEAD:
-#+HTML_HEAD:
-
-* Table of Contents
-** Section 1 - Launching a new company
-*** [[./mba/ch05.org][Chapter 05. How to Legally Protect Your Company]]
-*** [[./mba/ch07.org][Chapter 07. How to Network]]
-
-** Section 2 - Business Presentations
-*** [[./mba/ch13.org][Chapter 13. Present Like Steve Jobs]]