-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
129 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: #1db966; | ||
transition: 0.3s; | ||
} | ||
a:hover { | ||
color: #63e2b7; | ||
} | ||
|
||
ul { | ||
margin-left: 1rem; | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<template> | ||
<n-h1 prefix="bar" style="margin-top: 30px"> | ||
<i class="twa twa-flashlight"></i> | ||
<n-text type="primary"> 软件下载</n-text> | ||
</n-h1> | ||
<n-alert title="说明" type="info"> | ||
若您并不知道 Frpc 到底是干什么用的,请不要直接下载它。 | ||
</n-alert> | ||
<n-space vertical> | ||
<n-grid cols="1" item-responsive> | ||
<n-grid-item class="item" span="1"> | ||
<n-card title="Nya LoCyanFrp! 乐青映射启动器" size="medium"> | ||
<h3>系统及架构支持</h3> | ||
<p> | ||
<span>Windows (至少需要 Windows 10), Linux, macOS</span> | ||
<br /> | ||
<span>架构支持</span> | ||
</p> | ||
<ul> | ||
<li>GUI: x86_84</li> | ||
<li>CLI: x86_84, arm64 (macOS)</li> | ||
</ul> | ||
<h3>下载</h3> | ||
<p> | ||
<a href="https://nyalcf.1l1.icu" target="_blank"> Nya LoCyanFrp! 官方网站 </a> | ||
<br /> | ||
<a | ||
href="https://mirrors.locyan.cn/github-release/Muska-Ami/NyaLCF/LatestRelease/" | ||
target="_blank" | ||
> | ||
LoCyan Mirrors 镜像站 | ||
</a> | ||
<br /> | ||
<a href="https://github.com/Muska-Ami/NyaLCF/releases" target="_blank"> GitHub </a> | ||
</p> | ||
</n-card> | ||
</n-grid-item> | ||
<n-grid-item class="item" span="1"> | ||
<n-card title="纯净版客户端 (Frpc)" size="medium"> | ||
<a | ||
href="https://mirrors.locyan.cn/github-release/LoCyan-Team/LoCyanFrpPureApp/LatestRelease/" | ||
target="_blank" | ||
> | ||
LoCyan Mirrors 镜像站 | ||
</a> | ||
<br /> | ||
<a href="https://github.com/LoCyan-Team/LoCyanFrpPureApp/releases" target="_blank"> | ||
GitHub | ||
</a> | ||
</n-card> | ||
</n-grid-item> | ||
</n-grid> | ||
</n-space> | ||
</template> | ||
|
||
<style> | ||
.item { | ||
margin-top: 20px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters