|
6 | 6 |
|
7 | 7 |
|
8 | 8 | <BUISectionTitle>You have reached the Demo and Documentation website for Blazor UI from Stoic Dreams!</BUISectionTitle>
|
9 |
| -<BUIQuote> |
10 |
| - @foreach (RenderFragment renderFragment in IntroQuote) |
11 |
| - { |
12 |
| - <BUIParagraph>@renderFragment</BUIParagraph> |
13 |
| - } |
| 9 | +<BUIQuote Color="Color.Error"> |
| 10 | + Blazor UI is no longer in active development. Check out our new <a href="https://webui.stoicdreams.com">Rust-based Web UI framework</a> instead. |
14 | 11 | </BUIQuote>
|
15 | 12 |
|
16 | 13 | <BUIStandardSection Title="Project Goals" ParagraphContent="ProjectGoals" />
|
17 | 14 |
|
18 | 15 | <BUIStandardSection Title="Who is Blazor UI for?" ParagraphContent="WhoIsFor" />
|
19 | 16 |
|
20 | 17 | <BUIStandardSection Title="Who is Blazor UI not for?">
|
21 |
| - @foreach (RenderFragment renderFragment in WhoIsNotFor) |
22 |
| - { |
23 |
| - <BUIParagraph>@renderFragment</BUIParagraph> |
24 |
| - } |
| 18 | + @foreach (RenderFragment renderFragment in WhoIsNotFor) |
| 19 | + { |
| 20 | + <BUIParagraph>@renderFragment</BUIParagraph> |
| 21 | + } |
25 | 22 | </BUIStandardSection>
|
26 | 23 |
|
27 | 24 | <BUIStandardSection Title="Current State of Development">
|
28 |
| - @foreach (RenderFragment renderFragment in CurrentDevelopment) |
29 |
| - { |
30 |
| - <BUIParagraph>@renderFragment</BUIParagraph> |
31 |
| - } |
| 25 | + <BUIParagraph> |
| 26 | + All work on Blazor UI has been abandoned. At this time, we have no plans of doing any further updates. |
| 27 | + </BUIParagraph> |
32 | 28 | </BUIStandardSection>
|
33 | 29 |
|
34 | 30 | <BUIPaper Elevation="@BUIStyles.ElevationFlat" Class="@($"ml-auto mr-auto mt-3 mb-3 pa-5 text-center")">
|
35 |
| - Have any questions? Or want to leave us some comments? Use our <BUIFeedbackLink>feedback form</BUIFeedbackLink> to send us your questions and comments. |
| 31 | + Have any questions? Or want to leave us some comments? Use our <BUIFeedbackLink>feedback form</BUIFeedbackLink> to send us your questions and comments. |
36 | 32 | </BUIPaper>
|
37 | 33 |
|
38 | 34 | <PageCodeView File="Pages/Home.razor" />
|
39 | 35 |
|
40 | 36 | @code {
|
41 |
| - protected override Task OnInitializedAsync() |
42 |
| - { |
43 |
| - Title = "Welcome"; |
44 |
| - ContinueButton = ("/getting-started", "Getting Started with Blazor UI"); |
45 |
| - return base.OnInitializedAsync(); |
46 |
| - } |
47 |
| - |
48 |
| - private static RenderFragment Build(Expression<RenderFragment> builder) |
49 |
| - { |
50 |
| - return builder.Compile(); |
51 |
| - } |
52 |
| - |
53 |
| - private static RenderFragment[] IntroQuote = |
54 |
| - { |
55 |
| - __builder => |
56 |
| - { |
57 |
| - <text>This website is being developed in conjuction with our new Blazor UI framework.</text> |
| 37 | + protected override Task OnInitializedAsync() |
| 38 | + { |
| 39 | + Title = "Welcome"; |
| 40 | + ContinueButton = ("/getting-started", "Getting Started with Blazor UI"); |
| 41 | + return base.OnInitializedAsync(); |
| 42 | + } |
| 43 | + |
| 44 | + private static RenderFragment Build(Expression<RenderFragment> builder) |
| 45 | + { |
| 46 | + return builder.Compile(); |
| 47 | + } |
| 48 | + |
| 49 | + private static RenderFragment[] IntroQuote = |
| 50 | + { |
| 51 | + __builder => |
| 52 | + { |
| 53 | + <text>This website was being developed in conjuction with the Blazor UI framework.</text> |
58 | 54 | },
|
59 |
| - (ImplicitRenderFragment)"We want to emphasize that this project is what we consider a true framework and not just a component library. The difference being that Blazor UI isn't just providing a suite of small components that you can use in your project, but instead is providing pre-defined larger components that will define much of the look and feel of your project." |
60 |
| - }; |
| 55 | + (ImplicitRenderFragment)"We want to emphasize that this project is what we consider a true framework and not just a component library. The difference being that Blazor UI isn't just providing a suite of small components that you can use in your project, but instead is providing pre-defined larger components that will define much of the look and feel of your project." |
| 56 | + }; |
61 | 57 |
|
62 |
| - private static RenderFragment[] ProjectGoals = |
63 |
| - { |
64 |
| - "The primary goal of Blazor UI is to provide a starting point that allows developers to save weeks if not months of work writing out tedious boilerplate to setup basic project features like layout, styles, navigation, etc., and just jump right in to building and adding content on day one.".ConvertToRenderFragment(), |
65 |
| - "Blazor UI will be usable for both websites when used in Blazor Client projects, as well as dedicated mobile and desktop apps when used in Maui Blazor projects.".ConvertToRenderFragment(), |
66 |
| - }; |
| 58 | + private static RenderFragment[] ProjectGoals = |
| 59 | + { |
| 60 | + "The primary goal of Blazor UI is to provide a starting point that allows developers to save weeks if not months of work writing out tedious boilerplate to setup basic project features like layout, styles, navigation, etc., and just jump right in to building and adding content on day one.".ConvertToRenderFragment(), |
| 61 | + "Blazor UI was originally conceptualized to be usable for both websites when used in Blazor Client projects, as well as dedicated mobile and desktop apps when used in Maui Blazor projects.".ConvertToRenderFragment(), |
| 62 | + }; |
67 | 63 |
|
68 |
| - private static RenderFragment[] WhoIsFor = @" |
69 |
| - Blazor UI is for developers who need to develop a website or application that adheres to Material UI standards for its look and feel. |
| 64 | + private static RenderFragment[] WhoIsFor = @" |
| 65 | + Blazor UI is for developers who want to develop a website using the .NET Blazor framework and need to develop a website or application that adheres to Material UI standards for its look and feel. |
70 | 66 |
|
71 |
| - Or developers that aren't explicity targeting any specific UI framework but are wanting to build a product that provides an exceptional user experience that will feel intuitive and easy to use to people using their product. |
| 67 | + Or Blazor developers that aren't explicity targeting any specific UI framework but are wanting to quickly build a product that provides an exceptional user experience that will feel intuitive and easy to use to people using their product. |
| 68 | +
|
| 69 | + Additionally, developers wanting to use this framework should be interested in forking the source code to build off of, since Blazor UI is no longer in active development. |
72 | 70 | ".ToRenderFragmentArray();
|
73 | 71 |
|
74 |
| - private static ImplicitRenderFragment[] WhoIsNotFor = |
75 |
| - { |
76 |
| - "Blazor UI might not be well suited for developers that are wanting to build a website or application that is very artistic or stylized, and breaks away from commonly used industry standards and trends of UI and UX.", |
77 |
| - "Blazor UI might not be well suited for developers that don't want to build a website or application that adheres to Material UI standards.", |
78 |
| - }; |
79 |
| - |
80 |
| - private static ImplicitRenderFragment[] CurrentDevelopment = |
81 |
| - { |
82 |
| - "This framework is very early in development, with a lot of experimental work being done to flesh out ideas and concepts that may or may not make it into the final product.", |
83 |
| - "Because of this experimental stage in development, it can be expected that breaking changes will occur in any update, even within patch version updates. This will continue throughout the lifespan of 1.X versions of Blazor UI.", |
84 |
| - "When we have reached a point of being satisfied that Blazor UI is ready for production use we will bump the version up to 2.0 and start following much stricter versioning standards going forward.", |
85 |
| - }; |
| 72 | + private static ImplicitRenderFragment[] WhoIsNotFor = |
| 73 | + { |
| 74 | + "Blazor UI might not be well suited for developers that are wanting to build a website or application that is very artistic or stylized, and breaks away from commonly used industry standards and trends of UI and UX.", |
| 75 | + "Blazor UI might not be well suited for developers that don't want to build a website or application that adheres to Material UI standards.", |
| 76 | + }; |
| 77 | + |
| 78 | + private static ImplicitRenderFragment[] CurrentDevelopment = |
| 79 | + { |
| 80 | + "This framework was very early in development, with a lot of experimental work being done to flesh out ideas and concepts.", |
| 81 | + "Because of this experimental stage in development, it can be expected that breaking changes will occur in any update, even within patch version updates. This will continue throughout the lifespan of 1.X versions of Blazor UI.", |
| 82 | + "When we have reached a point of being satisfied that Blazor UI is ready for production use we will bump the version up to 2.0 and start following much stricter versioning standards going forward.", |
| 83 | + }; |
86 | 84 | }
|
0 commit comments