diff --git a/smma/landing_page_hugo.md b/smma/landing_page_hugo.md
index f25a797..cfde689 100644
--- a/smma/landing_page_hugo.md
+++ b/smma/landing_page_hugo.md
@@ -140,4 +140,256 @@ This assumes that your CSS file is located at `static/css/main.css`.
You can then structure your landing page content in the `landing.html` template using HTML and Hugo's template language. Use the appropriate HTML tags and classes to apply the CSS styles to your content.
-Remember to test your landing page across different devices and browsers to ensure a consistent and responsive experience.
\ No newline at end of file
+Remember to test your landing page across different devices and browsers to ensure a consistent and responsive experience.
+
+---
+
+Sure, let's perform a logic test and step through what we have so far to ensure we have everything accounted for. We'll check each component of the project structure and make sure it's clear and complete.
+
+## Project Structure
+
+### 1. `archetypes/default.md`
+- **Purpose**: Provides a default structure for new content.
+- **Current Content**:
+ ```markdown
+ ---
+ title: "{{ replace .Name "-" " " | title }}"
+ date: {{ .Date }}
+ draft: true
+ ---
+ ```
+- **Logic Check**: This is correct for creating new content pages. For a single-page landing site, this is minimal but sufficient.
+
+### 2. `content/_index.md`
+- **Purpose**: Holds the content for the landing page.
+- **Current Content**:
+ ```markdown
+ ---
+ title: "Landing Page"
+ ---
+
+ # Welcome
+ ```
+- **Logic Check**: This is a good starting point. It sets the title and includes a heading.
+
+### 3. `layouts/`
+- **Purpose**: Contains HTML templates for the landing page.
+- **Structure**:
+ ```
+ layouts/
+ ├── _default/
+ │ ├── baseof.html
+ │ └── landing.html
+ └── partials/
+ ├── header.html
+ ├── footer.html
+ └── cta.html
+ ```
+- **Logic Check**: The structure is logical. The `_default` folder contains the base template and the landing page template. The `partials` folder contains reusable HTML components.
+
+### 4. `static/`
+- **Purpose**: Holds static assets such as CSS stylesheets and images.
+- **Structure**:
+ ```
+ static/
+ ├── css/
+ │ └── main.css
+ └── images/
+ ```
+- **Logic Check**: This is correct. CSS and images are appropriately placed in the `static` directory.
+
+### 5. `config.toml`
+- **Purpose**: Contains the configuration settings for the Hugo site.
+- **Content Example**:
+ ```toml
+ baseURL = "http://example.org/"
+ languageCode = "en-us"
+ title = "My Landing Page"
+ theme = ""
+ ```
+
+### Detailed Steps to Implement Each Component
+
+#### `layouts/_default/baseof.html`
+
+- **Purpose**: Base template that defines the overall structure of the page.
+- **Content**:
+ ```html
+
+
+