feat: github login
This commit is contained in:
@@ -4,7 +4,7 @@ import { useAppSelector } from '../../app/store';
|
||||
import Login from './Login';
|
||||
|
||||
const TextMessage = ({ text, animate = '' }: { text: string; animate?: string }) => (
|
||||
<p className={`text-gray-600 text-md mb-3 ${animate}`}>{text}</p>
|
||||
<p className={`text-gray-600 text-md mb-1 ${animate}`}>{text}</p>
|
||||
);
|
||||
type Props = {
|
||||
needLogin?: boolean
|
||||
@@ -12,20 +12,20 @@ type Props = {
|
||||
const Index = ({ needLogin = false }: Props) => {
|
||||
const { name, logo } = useAppSelector(store => store.server);
|
||||
return (
|
||||
<div className="flex gap-2">
|
||||
<div className="flex gap-1 pl-1">
|
||||
<div className="w-12 h-12">
|
||||
<img src={logo} alt="logo" className="w-full h-full" />
|
||||
</div>
|
||||
<div className="flex flex-col">
|
||||
<span className="flex items-center gap-2 leading-6">
|
||||
<em className="text-black not-italic font-bold text-lg">{name}</em>
|
||||
<em className="text-black not-italic text-lg font-bold">{name}</em>
|
||||
<time className="text-gray-300 text-sm">{`${new Date().toLocaleTimeString('en-US', {
|
||||
minute: 'numeric',
|
||||
hour: 'numeric',
|
||||
hour12: true,
|
||||
})}`}</time>
|
||||
</span>
|
||||
<TextMessage text="👋 Hi there, Nice to meet you!" animate="animate-[fadeInUp_.5s_ease-in-out_both]" />
|
||||
<TextMessage text="Hi there, Nice to meet you! 👋👋👋" animate={needLogin ? "animate-[fadeInUp_.5s_ease-in-out_both]" : ''} />
|
||||
{needLogin && <>
|
||||
<TextMessage text="You need login before we have a nice talk 👇" animate="animate-[fadeInUp_.5s_.8s_ease-in-out_both]" />
|
||||
<div className="animate-[fadeInUp_.5s_1.2s_ease-in-out_both]">
|
||||
|
||||
Reference in New Issue
Block a user