-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathOverview.razor
More file actions
68 lines (62 loc) · 2.43 KB
/
Overview.razor
File metadata and controls
68 lines (62 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@page "/docs/getting-started"
@page "/docs/getting-started/overview"
@layout DocsContentLayout
<PageTitle>Overview - LumexUI</PageTitle>
<DocsSection Title="Introduction">
<p>
LumexUI is an open-source project that offers a diverse collection of Blazor UI components,
all fully built with Tailwind CSS for streamlined and modern web development.
</p>
<p>
These components are designed to be not only aesthetically pleasing but also highly customizable,
allowing you to tailor them to meet your specific needs.
The library is optimized for performance,
ensuring that your applications remain fast and responsive.
</p>
<p>
We drew inspiration from
<LumexLink Href="https://heroui.org/"
Color="@ThemeColor.None"
External="@true">
HeroUI
</LumexLink>, a React component library,
in shaping the foundational ideas behind LumexUI.
HeroUI’s approach to using Tailwind CSS, its elegant design,
and robust customization system greatly influenced us.
Our goal is to bring these same principles to the Blazor ecosystem,
making them accessible to developers who prefer Blazor for their projects.
</p>
</DocsSection>
<DocsSection Title="Advantages of LumexUI">
<ul>
@foreach( var feature in _features )
{
<li>
<strong>@feature.Title. </strong>@feature.Description
</li>
}
</ul>
</DocsSection>
<DocsSection Title="Pick Your Learning Path">
<p class="max-w-screen-sm">
<strong>Ready to dive in?</strong>
Feel free to pick a learning path that suits your preference –
although we do recommend going over all of the content, if possible!
</p>
<ul class="not-prose grid grid-cols-1 gap-8 mt-8 md:grid-cols-2">
@foreach( var quickLink in _quickLinks )
{
<QuickLink Icon="@quickLink.Icon"
Link="@quickLink.Link"
Title="@quickLink.Title"
Description="@quickLink.Description" />
}
</ul>
</DocsSection>
<DocsSection Title="Get involved">
<p>
As we continue to develop and expand this project,
we invite you to contribute and help shape the future of LumexUI.
Together, we can build a powerful and flexible UI toolkit for the Blazor community.
</p>
</DocsSection>