diff --git a/README.md b/README.md
index 4873977..ebf81b3 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Supports both Blazor WebAssembly and Blazor Server.
## Getting started
-To start, install it from NuGet.
+To start, install it from NuGet:
[![Nuget GiscusBlazor](https://img.shields.io/nuget/v/GiscusBlazor.svg)](https://www.nuget.org/packages/GiscusBlazor/)
@@ -27,13 +27,13 @@ You might need to fix the version when publish your website. For example:
```html
-
+
-
+
-
+
```
Then add this component to your `.razor` files where you want the comments to appear like this:
@@ -53,9 +53,21 @@ Then add this component to your `.razor` files where you want the comments to ap
EmitMetadata="false"
InputPosition="InputPosition.Bottom"
Theme="light"
- Lang="en" />
+ Lang="en"
+ LazyLoading="true" />
```
-Or you can just add `@using GiscusBlazor` to `_imports`
+Or you can just add `@using GiscusBlazor` to `_Imports.razor`.
-Most of the parameters can be found from the [giscus official site](https://giscus.app/).
+Most of the parameters’ information can be found from the [giscus official site](https://giscus.app/).
+
+## Samples
+
+You can get some sample apps from the [samples](samples) directory, in both Blazor WebAssembly and Blazor Server.
+
+## Changelog
+
+### v2.2.1
+
+- Add support for lazy-loading (see [giscus official site](https://giscus.app/)).
+- Removed support for .NET 5.0, which is now [out of support](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core#lifecycle).
\ No newline at end of file
diff --git a/samples/BlazorServerDemo/Pages/Counter.razor b/samples/BlazorServerDemo/Pages/Counter.razor
index 437b7b6..62a6566 100644
--- a/samples/BlazorServerDemo/Pages/Counter.razor
+++ b/samples/BlazorServerDemo/Pages/Counter.razor
@@ -18,7 +18,8 @@
EmitMetadata="false"
InputPosition="InputPosition.Bottom"
Theme="light"
- Lang="en" />
+ Lang="en"
+ LazyLoading="true" />
@code {
private int currentCount = 0;
diff --git a/samples/BlazorServerDemo/Pages/_Layout.cshtml b/samples/BlazorServerDemo/Pages/_Layout.cshtml
index a6f09c9..fd51199 100644
--- a/samples/BlazorServerDemo/Pages/_Layout.cshtml
+++ b/samples/BlazorServerDemo/Pages/_Layout.cshtml
@@ -12,7 +12,7 @@