Skip to content

Commit e538be5

Browse files
committed
content update
1 parent 0d9cfa4 commit e538be5

File tree

2 files changed

+59
-61
lines changed

2 files changed

+59
-61
lines changed

StoicDreams.SampleWebsite/Pages/Home.razor

+51-53
Original file line numberDiff line numberDiff line change
@@ -6,81 +6,79 @@
66

77

88
<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.
1411
</BUIQuote>
1512

1613
<BUIStandardSection Title="Project Goals" ParagraphContent="ProjectGoals" />
1714

1815
<BUIStandardSection Title="Who is Blazor UI for?" ParagraphContent="WhoIsFor" />
1916

2017
<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+
}
2522
</BUIStandardSection>
2623

2724
<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>
3228
</BUIStandardSection>
3329

3430
<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.
3632
</BUIPaper>
3733

3834
<PageCodeView File="Pages/Home.razor" />
3935

4036
@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>
5854
},
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+
};
6157

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+
};
6763

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.
7066
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.
7270
".ToRenderFragmentArray();
7371

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+
};
8684
}

StoicDreams.SampleWebsite/wwwroot/sitemap.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,34 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://blazorui.stoicdreams.com/</loc>
5-
<lastmod>2023-04-07</lastmod>
5+
<lastmod>2023-07-30</lastmod>
66
</url>
77
<url>
88
<loc>https://blazorui.stoicdreams.com/getting-started</loc>
9-
<lastmod>2023-04-07</lastmod>
9+
<lastmod>2023-07-30</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://blazorui.stoicdreams.com/content/pagesections</loc>
13-
<lastmod>2023-04-07</lastmod>
13+
<lastmod>2023-07-30</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://blazorui.stoicdreams.com/markdown</loc>
17-
<lastmod>2023-04-07</lastmod>
17+
<lastmod>2023-07-30</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://blazorui.stoicdreams.com/markdown/emojis</loc>
21-
<lastmod>2023-04-07</lastmod>
21+
<lastmod>2023-07-30</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://blazorui.stoicdreams.com/userinput/inputchips</loc>
25-
<lastmod>2023-04-07</lastmod>
25+
<lastmod>2023-07-30</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://blazorui.stoicdreams.com/terms</loc>
29-
<lastmod>2023-04-07</lastmod>
29+
<lastmod>2023-07-30</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://blazorui.stoicdreams.com/privacy</loc>
33-
<lastmod>2023-04-07</lastmod>
33+
<lastmod>2023-07-30</lastmod>
3434
</url>
3535
</urlset>

0 commit comments

Comments
 (0)