diff --git a/website/source/intro/examples/aws.html.md b/website/source/intro/examples/aws.html.md
new file mode 100644
index 000000000..24d1e26b4
--- /dev/null
+++ b/website/source/intro/examples/aws.html.md
@@ -0,0 +1,25 @@
+---
+layout: "intro"
+page_title: "Basic Two-Tier AWS Architecture"
+sidebar_current: "examples-aws"
+---
+
+# Basic Two-Tier AWS Architecture
+
+This provides a template for running a simple two-tier architecture on Amazon
+Web services.
+
+The basic premise is you have stateless app servers running behind
+and ELB serving traffic. State for your application is stored in an RDS
+database.
+
+This ignores deploying and getting data onto the application
+servers intentionally to simplify. However, you could do so either via
+[provisioners](/docs/provisioners/index.html) or by pre-baking configured
+AMIs with [Packer](http://www.packer.io).
+
+## Configuration
+
+```
+FOOBAR
+```
diff --git a/website/source/intro/examples/index.html.markdown b/website/source/intro/examples/index.html.markdown
new file mode 100644
index 000000000..f89917f92
--- /dev/null
+++ b/website/source/intro/examples/index.html.markdown
@@ -0,0 +1,35 @@
+---
+layout: "intro"
+page_title: "Example Configurations"
+sidebar_current: "examples"
+---
+
+# Example Configurations
+
+These examples are designed to help you understand some
+of the ways Terraform can be used.
+
+Other than configuring the provider (with, for example, an API key),
+the examples are ready to run as-is.
+
+
+
+
+Note: The examples use real providers that launch
+real resources. That means they can cost money to
+experiment with. To avoid unexpected charges, be sure to understand the price
+of resources before launching them, and verify any unneeded resources
+are cleaned up afterwards.
+
+
+
+Experimenting in this way can help you learn how the Terraform lifecycle
+works, as well as how to repeatedly create and destroy infrastructure.
+
+If you're completely new to Terraform, we recommend reading the
+[getting started guide](/intro/getting-started.html) before diving into
+the examples. However, due to the intuitive configuration Terraform
+uses it isn't required.
+
+To use these examples, Terraform must first be installed on your machine.
+You can install Terraform from the [downloads page](/downloads.html).
diff --git a/website/source/layouts/_header.erb b/website/source/layouts/_header.erb
index cd3ccce98..2d2f5c7d7 100644
--- a/website/source/layouts/_header.erb
+++ b/website/source/layouts/_header.erb
@@ -3,7 +3,7 @@
-
+
diff --git a/website/source/layouts/intro.erb b/website/source/layouts/intro.erb
index 01b51cea1..2a159e6a2 100644
--- a/website/source/layouts/intro.erb
+++ b/website/source/layouts/intro.erb
@@ -71,6 +71,27 @@
+
+