diff --git a/src/content/block/unit1.md b/src/content/block/unit1.md
index 1ea3442..6394ac9 100644
--- a/src/content/block/unit1.md
+++ b/src/content/block/unit1.md
@@ -10,17 +10,6 @@ tags: [
## Prepare
-### Review as needed
-
-- [HTML Introduction](https://byui-cit.github.io/learning-modules/modules/html/html-intro/)
-- [CSS Introduction](https://byui-cit.github.io/learning-modules/modules/css/css-intro/)
-- [CSS Diner](https://flukeout.github.io) CSS review and practice
-- [Running Javascript](https://byui-cit.github.io/learning-modules/modules/js/introduction/ponder1/)
-- [Practice with JS Variables](https://codepen.io/matkat/pen/LYjRjzm)
-- [Practice with the DOM](https://byui-cit.github.io/learning-modules/modules/js/dom-basics/ponder1/)
-
-### Explore
-
[Unit 1 Exploration](../../prepare/unit1)
## Ponder
diff --git a/src/content/prepare/unit1.md b/src/content/prepare/unit1.md
index ddd0149..fde1d1c 100644
--- a/src/content/prepare/unit1.md
+++ b/src/content/prepare/unit1.md
@@ -3,6 +3,13 @@ title: Unit 1 Exploration.
time: 60min
---
+### Review as needed
+
+- [HTML Introduction](https://byui-cit.github.io/learning-modules/modules/html/html-intro/)
+- [CSS Introduction](https://byui-cit.github.io/learning-modules/modules/css/css-intro/)
+- [CSS Diner](https://flukeout.github.io) CSS review and practice
+- [Running Javascript](https://byui-cit.github.io/learning-modules/modules/js/introduction/ponder1/)
+- [Practice with the DOM](https://byui-cit.github.io/learning-modules/modules/js/dom-basics/ponder1/)
- **CSS Selectors**:
"What are CSS selectors?", "Can you give an example of a CSS selector?", "How do I use multiple selectors in one rule?", "What is a CSS combinator?", "What is a pseudo-class in CSS?"
- **Javascript variables**:
diff --git a/src/content/prepare/unit1a.md b/src/content/prepare/unit1a.md
index 2c7fb93..de3e4f4 100644
--- a/src/content/prepare/unit1a.md
+++ b/src/content/prepare/unit1a.md
@@ -3,6 +3,13 @@ title: Unit 1 Readings - Part 1.
time: 30min
---
+### Review as needed
+
+- [HTML Introduction](https://byui-cit.github.io/learning-modules/modules/html/html-intro/)
+- [CSS Introduction](https://byui-cit.github.io/learning-modules/modules/css/css-intro/)
+- [CSS Diner](https://flukeout.github.io) CSS review and practice
+- [Running Javascript](https://byui-cit.github.io/learning-modules/modules/js/introduction/ponder1/)
+- [Practice with the DOM](https://byui-cit.github.io/learning-modules/modules/js/dom-basics/ponder1/)
- **CSS Selectors**:
"What are CSS selectors?", "Can you give an example of a CSS selector?", "How do I use multiple selectors in one rule?", "What is a CSS combinator?", "What is a pseudo-class in CSS?"
- **Javascript variables**:
diff --git a/src/content/prove/nps-1.mdx b/src/content/prove/nps-1.mdx
index c5b82e9..640722e 100644
--- a/src/content/prove/nps-1.mdx
+++ b/src/content/prove/nps-1.mdx
@@ -1,6 +1,6 @@
---
title: NPS - part 1
-description: This activity will have you create use the free National Park Service api to recreate a simplified version of an NPS website for the park or monument of your choice. Part one will familiarize us with the project setup and see us through creating the header for the first page.
+description: This activity will have you use the free National Park Service api to recreate a simplified version of an NPS website for the park or monument of your choice. Part one will familiarize us with the project setup and see us through creating the header for the first page.
time: 2 hours
---
diff --git a/src/content/prove/nps-2.mdx b/src/content/prove/nps-2.mdx
new file mode 100644
index 0000000..067c613
--- /dev/null
+++ b/src/content/prove/nps-2.mdx
@@ -0,0 +1,347 @@
+---
+title: NPS - part 2
+description: This activity will have you use the free National Park Service api to recreate a simplified version of an NPS website for the park or monument of your choice. Part two see us finish the home page using the provided static data.
+time: 2 hours
+---
+
+
+
+## Instructions
+
+Complete the following assignment individually. Feel free however to work together with your classmates to accomplish the task. You are all solving the same problems and have different insights.
+
+## **01** Review the provided project files and code
+
+Begin by opening up the NPS project you cloned to your computer during the previous activity. Open the `package.json` file. This file is the blueprint for the project. It lists the tools and libraries the project will use, and has a section with some scripts to make common commands easy to run.
+
+There is currently only one tool, or dependency in or project currently: Vite. This tool is called a bundler. It has the ability to run different processes on our files to get them ready for production. It also has a development web server built into it. We will use this server instead of the one provided by the Live Server extention you are probably familiar with to preview our changes.
+
+Open up the `src` folder and take a look at the files there. This is where the code we write will live. There is already a couple of javascript files, a CSS file, and an `index.html`. You will rarely be making any changes outside of this folder.
+
+Before we can view the site we have to actually install the tools we said we need. Open a command prompt in VS Code and type the following `dir` if you are running windows, or `ls` if you are on a mac. In the files that are listed you should see the `package.json` if you don't see that you need to change directories until you get the right one.
+
+Then type: `npm install`. This looks at the list of dependencies in teh `package.json` file and installs them into the project. It will create a new directory called `node_modules`. You can delete that folder at any time and rebuild it with the command above.
+
+Finally type `npm run start`. This will start up our development environment and should open the page in your default browser.
+
+## **02** Finish the HTML
+
+Open up the `index.html` file. You see a fair amount of code in there already. Below is a summary of the major sections provided:
+
+```html
+
+
+
+
+
+
+
+
+
+
+ ```
+
+If you goto the page in the browser, click on the URL then hit `tab` a couple times you will see the purpose of the section with the class `skip-links` This is to make navigating the site easier for folks who use a keyboard instead of a mouse. Check out the CSS file to see how that is hidden and shown.
+
+Notice that there are two headers as well. Open up the real page for [Yellowstone National Park](https://www.nps.gov/yell/index.htm). The first header (global) is the same across all NPS websites. The other header is specific to the park.
+
+The page has a unique way of providing the icons as well. If you look inside the global-header you will see something that looks like this:
+
+```html
+
+```
+
+The icons are all svgs and can be found in the file `images/sprite.symbol.svg`. Look through that file to see what icons you have access to. This course is not going to dive deep into SVGs, but this provides an example of one way they can be used.
+
+The next step is to finish writing the HTML for both headers: the global and the park. Refer back to the real website as you do this. See the following image to see what your page should look like when you are done with this week. Just hard code the values for the park name etc for now. We will change that later.
+
+Note! You do not need to build the menu that is shown when you click the `Menu` button this week.
+
+import Figure from "../../components/Figure.astro";
+
+
+
+
+
+Once you have completed this step feel free to review the instructor's code. Don't just copy and paste this into your file! Review it, note the differences, and then add or remove whatever you think appropriate once you understand what the differences mean.
+
+
+Click here to see the instructor's code
+
+```html
+
+
+
+
+
+
+
+```
+
+
+
+## **03** Begin Styling
+
+Open up the `style.css` file. Note you were given some CSS to get you started. All those custom properties were taken from the actual site. You won't need all of them, but they should prove helpful as you style. Refer back to the real site often as you are styling. Your goal is to make it as close as possible. Below are a few things to note:
+
+- You should resize your browser to be narrow...like a mobile screen. You can do this either through the developer tools, or just by changing the width of your browser
+- Start with the global styles. What font should be used for the body copy and headlines? What color(s) should links be? Should the base font size be increased? (yes!), etc
+- Your fonts and colors can be found in the custom properties at the top of the file. Use them!
+- It would be good to add a rule to make our images responsive. We never want an image to be bigger than the space it has available. So you will see that a rule has been added to make this happen.
+- You will probably need to use both flexbox and grid to accomplish the layout.
+- For now to get the styling done, use `https://www.nps.gov/common/uploads/structured_data/3C7D5920-1DD8-B71B-0B83F012ED802CEA.jpg` for the banner image. If the sizing is giving you trouble...check out the `object-fit` property.
+- Once you get the background colors set you can get rid of the rule at the bottom: `svg`
+
+Continue adding css until your page matches the screenshot above.
+
+Once you have completed this step feel free to review the instructor's code. Don't just copy and paste this into your file! Review it, note the differences, and then add or remove whatever you think appropriate once you understand what the differences mean. Your sizes and spacings may not match mine exactly...that is ok. I didn't match the original perfectly.
+
+
+Click here to see the instructor's code
+
+```css
+/* Global navbar styling */
+
+.global-header {
+ background-color: var(--bs-black);
+ color: white;
+ display: flex;
+ justify-content: space-between;
+ fill: white;
+}
+
+.global-header a:link,
+.global-header a:visited,
+#park-header a:link,
+#park-header a:visited {
+ color: white;
+ text-decoration: none;
+}
+.global-header .icon {
+ width: 20px;
+ height: 20px;
+}
+
+.global-header__right {
+ display: flex;
+ align-items: center;
+}
+.global-header__right .search-icon {
+ padding: 0 1rem;
+ margin-top: 6px;
+}
+.global-header__right button {
+ background-color: transparent;
+ border: none;
+ color: white;
+ font-size: 1rem;
+ padding: 1.2em;
+ display: flex;
+ align-items: center;
+ text-transform: uppercase;
+ border-left: 1px solid var(--bs-grey-5);
+}
+
+/* Hero banner */
+.hero-banner {
+ display: grid;
+ grid-template-columns: 1fr;
+}
+.hero-banner > img {
+ width: 100%;
+ height: 350px;
+ object-fit: cover;
+ grid-column: 1/2;
+ grid-row: 1/3;
+}
+
+.hero-banner__content {
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ grid-column: 1/2;
+ grid-row: 2/3;
+ display: flex;
+ align-items: center;
+ gap: 1em;
+ padding: 0.5em 1em;
+}
+
+.hero-banner__title {
+ font-size: 1.8em;
+}
+
+.hero-banner__subtitle {
+ display: flex;
+ flex-direction: column;
+ font-size: 0.8rem;
+}
+/* Park nav styling */
+
+.park-nav > ul {
+ list-style: none;
+ padding-left: 0;
+ margin: 0;
+ display: flex;
+ justify-content: center;
+ background-color: var(--bs-black);
+ font-size: 0.8rem;
+}
+.park-nav a {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ padding: 0.8em 2em;
+}
+.park-nav a:hover {
+ background-color: rgba(255, 255, 255, 0.3);
+}
+.park-nav svg {
+ width: 24px;
+ height: 24px;
+}
+```
+
+
+
+## **04** Make it dynamic
+
+The last step is to dynmaically load in all the info specific to this park. For this week we will be using data provided in a file called `js/parkService.mjs` Open that file up now. It has information about Yellowstone National Park, and so we will all make that site for now. Starting with part 2 however you will be able to choose any park you want!
+
+You should see a large javascript object, and a function that is exported that just returns the object.
+
+Now open up `js/main.js`. You will notice that the function is imported so we can use it. In fact it is already being called and the results set into a variable called `parkData`.
+
+To finish we need to use the DOM methods to select each part of the page that needs dynamic data, then pull the appropriate data out of the variable. Let's make a list!
+
+1. Update the link in the disclaimer area to read the name of the park and navigate to that park's official site.
+2. Update the title of the page to read the name of the park.
+3. Use the first image in the list in the data for the hero image.
+4. Update the name, designation, and states of the park in the hero.
+
+As a review we will do the first one together.
+
+Remember that to manipulate any HTML element we first have to use the DOM methods to select it into our Javascript code. Commonly we use `document.querySelector` to do this. To update the link in the disclaimer we can use the `.disclaimer` selector, then we need to update two things: the `href` with the URL and the `innerHTML` with the name of the park. Review the following code:
+
+```javascript
+const disclaimer = document.querySelector(".disclaimer");
+disclaimer.href = parkData.url;
+disclaimer.innerHTML = parkData.fullName;
+```
+
+For the name, designation, and states of the park you could select each of those independently, or we could just create a simple template funtion and build it all at once. That function would look like the following:
+
+```javascript
+function parkInfoTemplate(info) {
+ return `${info.name}
+
+ ${info.designation}
+ ${info.states}
+
`;
+}
+```
+
+Finish the last two items on your own.
+
+## **05** Commit and push to Github
+
+Commit your changes, then push them to GitHub. Wait a few minutes then check to make sure they show on Netlify.
+
+After verifying that your page updated, submit the URL to your page in Ilearn. This will be the Netlify URL we setup earlier.
diff --git a/src/content/prove/setup.md b/src/content/prove/setup.md
index 7fd0f19..af0143c 100644
--- a/src/content/prove/setup.md
+++ b/src/content/prove/setup.md
@@ -20,13 +20,13 @@ Next, we need to install NodeJs. NodeJs is a runtime environment that will allow
Follow the instructions for your operating system found here: [Node Installation](https://byui-cit.github.io/learning-modules/modules/general/node-installation/)
-## **03** Create your working directory and copy the starter project for the individual project.
+## **03** Copy the starter project for the individual project.
-Create a new folder to hold the work you will perform this semester called `wdd231`.
+Create a new folder to hold the work you will perform this semester called `wdd231`.
Visit this [template repository](https://github.com/matkat99/nps). Make sure that you are logged into Github, and press the "Use this template" button in the top right corner of the page. Then select "Create a new repository" and give it a name. You can keep the same name if you would like. This will create a copy of the repository in your account for you to use.
-Next get the URL for the new repository (Green "Code" button.) then open a new window in VS Code (File->New Window). You should see a link that says: "Clone Git Repository..." Click it and paste in the URL you got from Github. It will ask you where you want to store the repository files on your computer, select the WDD231 folder you created earlier.
+Next get the URL for the new repository (Green "Code" button.) then open a new window in VS Code (File->New Window). You should see a link that says: "Clone Git Repository..." Click it and paste in the URL you got from Github. It will ask you where you want to store the repository files on your computer, select the `wdd231` folder you created earlier.
After it is done cloning, VS Code will ask if you want to open the repository, say yes.
@@ -34,8 +34,8 @@ After it is done cloning, VS Code will ask if you want to open the repository, s
We will be using a product called Netlify to host our site. Create an account there and login (I would recommend just using the Github button).
- After logging in you need to add a new site. Click on the "Add New Site" button and select "Import an Existing Project". Connect to your Github account using the "Github" button. You should see a list of repositories on your account. Find the one that contains the Sleepoutside project.
+ After logging in you need to add a new site. Click on the "Add New Site" button and select "Import an Existing Project". Connect to your Github account using the "Github" button. You should see a list of repositories on your account. Find the one that contains the NPS project.
- Select the "main" branch. Then in the "build command" box enter `npm run build`. Then "Deploy Site". Netlify will produce a randomized URL for the site that should you need to remember. Copy it and put it somewhere you can find it easily. This is the link to your "production" site and is the one you will be turning in. (You could even put this into the Readme.md file to make it easy to find!)
+ Select the "main" branch. Then in the "build command" box enter `npm run build`. Then "Deploy Site". Netlify will produce a randomized URL for the site that you need to remember. Copy it and put it somewhere you can find it easily. This is the link to your "production" site and is the one you will be turning in. (You could even put this into the Readme.md file to make it easy to find!)
> The build version of the site will be considered the production version. This should always work! The instructor should be able to go to that address at any time and not see any errors. Netlify will update your site everytime it sees a change to the "main" branch. So after committing you should probably go check Netlify to make sure nothing broke.
diff --git a/src/content/semester/unit1.md b/src/content/semester/unit1.md
index 7e1f901..cee4341 100644
--- a/src/content/semester/unit1.md
+++ b/src/content/semester/unit1.md
@@ -11,17 +11,6 @@ tags: [
## Prepare
-### Review as needed
-
-- [HTML Introduction](https://byui-cit.github.io/learning-modules/modules/html/html-intro/)
-- [CSS Introduction](https://byui-cit.github.io/learning-modules/modules/css/css-intro/)
-- [CSS Diner](https://flukeout.github.io) CSS review and practice
-- [Running Javascript](https://byui-cit.github.io/learning-modules/modules/js/introduction/ponder1/)
-- [Practice with JS Variables](https://codepen.io/matkat/pen/LYjRjzm)
-- [Practice with the DOM](https://byui-cit.github.io/learning-modules/modules/js/dom-basics/ponder1/)
-
-### Explore
-
- [Week 1 Exploration](../../prepare/unit1a)
- [Week 2 Exploration](../../prepare/unit1b)