Commit
·
451df29
1
Parent(s):
02f7d63
up
Browse files- src/app/main.tsx +25 -1
src/app/main.tsx
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
import React, { useEffect, useRef, useTransition } from 'react'
|
4 |
import { IoMdPhonePortrait } from 'react-icons/io'
|
5 |
import { GiRollingDices } from 'react-icons/gi'
|
6 |
-
import { FaCloudDownloadAlt } from "react-icons/fa"
|
7 |
import { useLocalStorage } from "usehooks-ts"
|
8 |
import { ClapProject, ClapMediaOrientation, ClapSegmentCategory, updateClap } from '@aitube/clap'
|
9 |
import Image from 'next/image'
|
@@ -949,6 +949,30 @@ export function Main() {
|
|
949 |
</div>
|
950 |
</div>
|
951 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
952 |
</div>
|
953 |
<Toaster />
|
954 |
</div>
|
|
|
3 |
import React, { useEffect, useRef, useTransition } from 'react'
|
4 |
import { IoMdPhonePortrait } from 'react-icons/io'
|
5 |
import { GiRollingDices } from 'react-icons/gi'
|
6 |
+
import { FaCloudDownloadAlt, FaDiscord } from "react-icons/fa"
|
7 |
import { useLocalStorage } from "usehooks-ts"
|
8 |
import { ClapProject, ClapMediaOrientation, ClapSegmentCategory, updateClap } from '@aitube/clap'
|
9 |
import Image from 'next/image'
|
|
|
949 |
</div>
|
950 |
</div>
|
951 |
</div>
|
952 |
+
<a
|
953 |
+
className="
|
954 |
+
fixed
|
955 |
+
|
956 |
+
left-8
|
957 |
+
bottom-4
|
958 |
+
flex flex-row items-center justify-center
|
959 |
+
|
960 |
+
no-underline
|
961 |
+
animation-all duration-150 ease-in-out
|
962 |
+
group
|
963 |
+
text-stone-950/60 hover:text-stone-950/80 scale-95 hover:scale-100"
|
964 |
+
href="https://discord.gg/AEruz9B92B"
|
965 |
+
target="_blank">
|
966 |
+
<div className="
|
967 |
+
text-base md:text-lg lg:text-xl
|
968 |
+
transition-all duration-150 ease-out
|
969 |
+
group-hover:animate-swing
|
970 |
+
"><FaDiscord /></div>
|
971 |
+
<div className="text-xs md:text-sm lg:text-base ml-1.5">
|
972 |
+
<span className="hidden md:block">Join us on Discord</span>
|
973 |
+
<span className="block md:hidden">Discord</span>
|
974 |
+
</div>
|
975 |
+
</a>
|
976 |
</div>
|
977 |
<Toaster />
|
978 |
</div>
|