-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #777 from unavi-xyz/dev
THE BIG ONE
- Loading branch information
Showing
553 changed files
with
8,318 additions
and
26,245 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@unavi/react-client": major | ||
"@unavi/client": major | ||
--- | ||
|
||
New engine! |
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,6 @@ | ||
--- | ||
"@unavi/protocol": minor | ||
"@unavi/host": minor | ||
--- | ||
|
||
update wired protocol |
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 |
---|---|---|
|
@@ -11,7 +11,10 @@ node_modules | |
# next.js | ||
.next/ | ||
out/ | ||
|
||
# build | ||
build | ||
dist | ||
|
||
# other | ||
.turbo | ||
|
File renamed without changes.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"plugins": ["prettier-plugin-packagejson"] | ||
} |
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 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 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,53 @@ | ||
import { BsDiscord, BsGithub, BsTwitter } from "react-icons/bs"; | ||
|
||
const GITHUB_URL = "https://github.com/unavi-xyz/unavi"; | ||
const DISCORD_URL = "https://discord.gg/cazUfCCgHJ"; | ||
const TWITTER_URL = "https://twitter.com/unavi_xyz"; | ||
|
||
export default function CommunityCard() { | ||
return ( | ||
<section className="relative w-full overflow-hidden rounded-3xl bg-gradient-to-tr from-indigo-300 to-sky-200 p-8"> | ||
<div className="absolute -bottom-2 -left-6 select-none text-8xl opacity-50 md:text-9xl"> | ||
🎉 | ||
</div> | ||
|
||
<div className="flex h-full flex-col items-center justify-center space-y-2"> | ||
<h2 className="z-10 text-center text-3xl font-bold"> | ||
Join the community! | ||
</h2> | ||
|
||
<ul className="z-10 flex space-x-2"> | ||
<a | ||
title="GitHub" | ||
href={GITHUB_URL} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="rounded-full p-2 text-3xl hover:opacity-80" | ||
> | ||
<BsGithub /> | ||
</a> | ||
|
||
<a | ||
title="Discord" | ||
href={DISCORD_URL} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="rounded-full p-2 text-3xl hover:opacity-80" | ||
> | ||
<BsDiscord /> | ||
</a> | ||
|
||
<a | ||
title="Twitter" | ||
href={TWITTER_URL} | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="rounded-full p-2 text-3xl hover:opacity-80" | ||
> | ||
<BsTwitter /> | ||
</a> | ||
</ul> | ||
</div> | ||
</section> | ||
); | ||
} |
Oops, something went wrong.
3f3500b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
client – ./
client-git-main-unavi.vercel.app
www.unavi.xyz
client-unavi.vercel.app
unavi.xyz