From 832997435e384148975c65ad60e61f7102cb7055 Mon Sep 17 00:00:00 2001 From: Peace Date: Fri, 5 Jul 2024 13:35:15 +0900 Subject: [PATCH] footer, bodycontent --- BlazorFluentUI/Components/Layout/NavMenu.razor | 6 ++++-- .../Components/Pages/LayoutBodyContent.razor | 16 ++++++++++++++++ .../Components/Pages/LayoutFooter.razor | 18 ++++++++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 BlazorFluentUI/Components/Pages/LayoutBodyContent.razor create mode 100644 BlazorFluentUI/Components/Pages/LayoutFooter.razor 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 { + +}