Skip to content

Commit 2345c21

Browse files
radkostanevdimodi
authored andcommitted
chore(common): apply seo recommendations (#2716)
1 parent c4b5416 commit 2345c21

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

_contentTemplates/common/get-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#prerequisites-download
77

8-
* To successfully complete the steps in this tutorial, make sure you have an <a href="https://visualstudio.microsoft.com/vs/" target="_blank">up-to-date Visual Studio</a>, which is compatible with the .NET version of your choice. If you are not using Visual Studio, some of the steps require using the .NET CLI or editing files manually. In this case, also refer to the [Workflow Details tutorial](slug://getting-started/what-you-need).
8+
* To successfully complete the steps in this tutorial, make sure you have an <a href="https://visualstudio.microsoft.com/vs/" target="_blank">up-to-date Visual Studio</a>, which is compatible with the [supported .NET version](slug://system-requirements#supported-net-versions) of your choice. If you are not using Visual Studio, some of the steps require using the .NET CLI or editing files manually. In this case, also refer to the [Workflow Details tutorial](slug://getting-started/what-you-need).
99

1010
* To learn more about the compatibility of the Telerik UI for Blazor components with different browser and .NET versions, see the [system requirements](slug://system-requirements).
1111

@@ -77,7 +77,7 @@ In this tutorial, you will use the [Telerik NuGet feed](slug://installation/nuge
7777

7878
![Telerik Blazor app in the browser](images/blazor-app-in-browser.png)
7979

80-
Well done! Now you have your first Telerik UI for Blazor component running in your Blazor app.
80+
Well done! Now you have your first Telerik UI for Blazor component running in your Blazor app, showcasing the power of front-end development with Blazor.
8181

8282
@[template](/_contentTemplates/common/get-started.md#next-steps-after-getting-started)
8383

getting-started/web-app.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
---
22
title: Blazor Web App
3-
page_title: First Steps with Blazor Web Apps and Telerik UI for Blazor
4-
description: Make your first steps with Telerik UI for Blazor and build a Web App that runs the UI for Blazor components.
3+
page_title: First Steps with Blazor Web App and Telerik UI
4+
meta_title: First Steps with Blazor Web App | Telerik UI for Blazor.
5+
description: Learn how to use the Telerik UI for Blazor components in a Blazor Web App project template for .NET 8 and .NET 9.
56
slug: getting-started/web-app
67
tags: get,started,first,steps,web,app,template
78
published: true
89
position: 5
910
---
1011

11-
# First Steps with UI for Blazor in a Web App
12+
# First Steps with Blazor Web App and Telerik UI
1213

13-
This article explains how to use the Telerik UI for Blazor components in a <a href="https://learn.microsoft.com/en-us/aspnet/core/blazor/project-structure?view=aspnetcore-9.0#blazor-web-app" target="_blank">Blazor Web App</a> project template that exists for .NET 8 and 9. You will create a new application from scratch, learn how to add the UI for Blazor components to a project, and finally, add a UI component to a view.
14+
This article explains how to use the Telerik UI for Blazor components in a Blazor Web App project template that exists for .NET 8 and 9. You will create a new application from scratch, learn how to add the UI for Blazor components to a project, and finally, add a UI component to a view.
1415

1516
@[template](/_contentTemplates/common/get-started.md#prerequisites-tip)
1617

@@ -28,15 +29,15 @@ This article explains how to use the Telerik UI for Blazor components in a <a hr
2829

2930
1. Click **Create**.
3031

31-
> Most Telerik Blazor components require interactivity. They will not respond to user actions and the Blazor framework will not refresh their UI in static render mode. Telerik Blazor components with JavaScript rendering (Barcodes, Charts, Gauges, Maps, and QR Codes) will not render in static render mode at all.
32+
> Each component in a Blazor Web App utilizes a render mode to define its hosting model, determine its rendering location, and specify whether it is interactive. Most Telerik Blazor components require interactivity. They will not respond to user actions and the Blazor framework will not refresh their UI in [Static server-side rendering mode (static SSR)](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-9.0#static-server-side-rendering-static-ssr). Telerik Blazor components with JavaScript rendering (Barcodes, Charts, Gauges, Maps, and QR Codes) will not render in static SSR at all.
3233
>
3334
> The `Account` section in the Blazor Web App template with identity is static by design. Most Telerik Blazor components cannot work in this section.
3435
3536
@[template](/_contentTemplates/common/get-started.md#add-nuget-feed)
3637

3738
## Step 3: Install the Telerik UI for Blazor Components
3839

39-
1. Right-click each project that will use Telerik Blazor components, and select **Manage NuGet Packages**.
40+
1. To include the Telerik component library, right-click each project that will use Telerik Blazor components, and select **Manage NuGet Packages**.
4041

4142
* Apps with interactive Server render mode need the Telerik Nuget package in the server project.
4243
* Apps with global interactive Auto or WebAssembly render mode need the Telerik NuGet package in the client project.

knowledge-base/common-telerik-themes-libman.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ res_type: kb
2626

2727
This KB article answers the following questions:
2828

29-
* How to use LibMan to add Telerik themes to your Telerik Blazor app.
29+
* How to use LibMan to add [Telerik themes](slug://styling-and-themes/overview) to your Telerik Blazor app.
3030
* How to update local themes in `wwwroot` automatically when a new version is available.
3131

3232
[LibMan](https://learn.microsoft.com/en-us/aspnet/core/client-side/libman/) is a client-side dependency manager, which is included in ASP.NET Core. You can use it to automatically download a Telerik theme to the `wwwroot` folder of your app, instead of using [static NuGet assets](slug://themes-overview#loading-themes-from-the-nuget-package) or [Telerik CDN](slug://common-features-cdn).

styling-and-themes/overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Themes Overview
33
page_title: Themes Overview
4-
description: The UI for Blazor suite comes with a set of built-in themes that you can choose from. Bootstrap and Material themes are also included.
4+
description: Telerik comes with built-in CSS Blazor themes that control the visual appearance of your UI components.
55
slug: themes-overview
66
tags: telerik,blazor,theme,built-in
77
published: True
@@ -15,7 +15,7 @@ Telerik UI for Blazor comes with a set of built-in CSS themes that control the v
1515

1616
>caption In This Article
1717
18-
* [Definitions for *theme* and *swatch*](#basics) and [how the themes relate to the components](#integration-with-the-telerik-components)
18+
* [Definitions for *theme* and *swatch*](#basics) and [how the themes in Blazor relate to the components](#integration-with-the-telerik-components)
1919
* [All built-in theme and swatch names](#built-in-themes) and how to [preview them](#comparing-themes-and-swatches)
2020
* How to [register a theme in your app](#using-a-theme)
2121
* How to [ensure compatibility between the Telerik components and the theme version](#compatibility-and-maintenance)
@@ -63,12 +63,12 @@ There are three ways to load a Telerik theme, in terms of physical CSS file loca
6363
* Load a CSS theme as a local file in the `wwwroot` folder in the Blazor app. This option is relevant to the following cases:
6464
* When using [custom themes](slug://themes-customize).
6565
* When [creating](slug://getting-started-vs-integration-new-project) or [converting](slug://getting-started-vs-integration-convert-project) Telerik Blazor apps with the [Telerik UI for Blazor Visual Studio extension](slug://getting-started-vs-integration-overview).
66-
* When using themes from the Telerik UI for Blazor [MSI installer](slug://installation/msi) or [ZIP archive](slug://installation/zip). The CSS files are in the `swatches` folder.
66+
* When using themes in Blazor from the Telerik UI for Blazor [MSI installer](slug://installation/msi) or [ZIP archive](slug://installation/zip). The CSS files are in the `swatches` folder.
6767
* When using [LibMan](slug://common-kb-telerik-themes-libman) or <a href="https://www.telerik.com/design-system/docs/themes/get-started/installation/" target="_blank">npm</a> to obtain a specific Telerik theme version. In this case, you can use all built-in theme swatches.
6868

6969
> The Blazor app must load only one Telerik theme file at a time. Upgrade the theme with every Telerik UI for Blazor version upgrade, unless you are loading the theme as a static NuGet asset.
7070
71-
### Loading Themes from the NuGet Package
71+
### Loading Themes in Blazor from the NuGet Package
7272

7373
The easiest way to load a Telerik theme in a Blazor app is to reference a static asset from the NuGet package. The .NET SDK will copy the CSS file to the output folder during build automatically. Static assets provide the following benefits:
7474

0 commit comments

Comments
 (0)