diff --git a/BlazorFluentUI/Components/Layout/NavMenu.razor b/BlazorFluentUI/Components/Layout/NavMenu.razor
index da3f872..f6dc33b 100644
--- a/BlazorFluentUI/Components/Layout/NavMenu.razor
+++ b/BlazorFluentUI/Components/Layout/NavMenu.razor
@@ -10,8 +10,10 @@
Counter
Weather
-
- Layout
+
+ Header
+ Footer
+ BodyContent
diff --git a/BlazorFluentUI/Components/Pages/LayoutBodyContent.razor b/BlazorFluentUI/Components/Pages/LayoutBodyContent.razor
new file mode 100644
index 0000000..5a54975
--- /dev/null
+++ b/BlazorFluentUI/Components/Pages/LayoutBodyContent.razor
@@ -0,0 +1,16 @@
+@page "/layoutbodycontent"
+
+BodyContent
+
+
+ The BodyContent
component is a placeholder for where actual site content needs to be shown.
+
+
+
+ This is some body content.
+
+
+
+@code {
+
+}
diff --git a/BlazorFluentUI/Components/Pages/LayoutFooter.razor b/BlazorFluentUI/Components/Pages/LayoutFooter.razor
new file mode 100644
index 0000000..5474c48
--- /dev/null
+++ b/BlazorFluentUI/Components/Pages/LayoutFooter.razor
@@ -0,0 +1,18 @@
+@page "/layoutfooter"
+
+Footer
+
+
+ The FluentFooter
component is used to display a footer at the bottom.
+
+
+
+ Footer start text
+
+ Footer end text
+
+
+
+@code {
+
+}