diff --git a/.DS_Store b/.DS_Store
index 24f0cc4..ba1244b 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/README.Blazor.md b/README.Blazor.md
new file mode 100644
index 0000000..e3c9349
--- /dev/null
+++ b/README.Blazor.md
@@ -0,0 +1,64 @@
+The first step is to use ABP CLI to create a new project.
+
+`abp new BookStore -u blazor`
+
+> See the [ABP official documentation](https://docs.abp.io) to learn [ABP framework](https://github.com/abpframework/abp).
+
+**Replace LeptonXLiteTheme with AntBlazorTheme packages**
+
+* Remove `Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXLiteTheme` Package.
+* Replace `Volo.Abp.Identity.Blazor.WebAssembly` with `Lsw.Abp.IdentityManagement.Blazor.WebAssembly.AntDesignUI`
+* Replace `Volo.Abp.SettingManagement.Blazor.WebAssembly` with `Lsw.Abp.SettingManagement.Blazor.WebAssembly.AntDesignUI`
+* Replace `Volo.Abp.TenantManagement.Blazor.WebAssembly` with `Lsw.Abp.TenantManagement.Blazor.WebAssembly.AntDesignUI`
+
+```
+
+**Open `_Imports.razor` and add with the following:**
+
+```csharp
+@using AntDesign
+@using Lsw.Abp.AntDesignUI
+@using Lsw.Abp.AntDesignUI.Components
+@using Lsw.Abp.AspnetCore.Components.Web.AntDesignTheme.Layout
+```
+
+**Open `BookStoreBlazorModule` make the following changes:**
+
+* Remove the `ConfigureBlazorise` method
+* Fix wrong using namespace
+* Update module dependencies
+ * For example, replace `AbpIdentityBlazorWebAssemblyModule` with `AbpIdentityBlazorWebAssemblyAntDesignModule`
+
+**Open `BookStoreMenuContributor` to update icon:**
+
+* `"fas fa-home"` to `IconType.Outline.Home`
+* `"fa fa-cog"` to `IconType.Outline.Setting`
+
+**Open `Index.razor` and replace with the following:**
+
+```csharp
+@page "/"
+@inherits BookStoreComponentBase
+
+