-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathHomeLayout.razor
More file actions
33 lines (28 loc) · 1.07 KB
/
HomeLayout.razor
File metadata and controls
33 lines (28 loc) · 1.07 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
@namespace LumexUI.Docs.Client.Components
@inherits LayoutComponentBase
@layout MainLayout
<Header Bordered="@false"
MaxWidth="@MaxWidth.XXLarge"
Class="before:backdrop-saturate-100" />
@Body
<footer class="mt-12 text-small/6">
<div class="py-10 flex flex-col justify-center items-center gap-3">
<p class="text-default-500">
© @(DateTimeOffset.UtcNow.ToString( "yyyy" )) LumexUI. All rights reserved.
</p>
<div class="flex items-center gap-1">
<LumexLink Href="https://github.com/LumexUI/lumexui"
External="@true"
Class="p-1 text-default-600">
<GithubIcon Size="20" />
<span class="sr-only">GitHub</span>
</LumexLink>
<LumexLink Href="https://discord.gg/jjgMz3apcb"
External="@true"
Class="p-1 text-default-600">
<DiscordIcon Size="20" />
<span class="sr-only">Discord</span>
</LumexLink>
</div>
</div>
</footer>