-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathDocsFooter.razor
More file actions
25 lines (22 loc) · 963 Bytes
/
DocsFooter.razor
File metadata and controls
25 lines (22 loc) · 963 Bytes
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
@namespace LumexUI.Docs.Client.Components
<footer class="mt-12 text-sm leading-6">
<div class="pt-10 pb-20 border-t border-divider flex flex-col justify-center items-center gap-1">
<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>