mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 11:34:23 +08:00
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
import React from 'react'
|
|
import Link from 'next/link'
|
|
const MenuNotLogado = () => (
|
|
<div className="flex space-x-4">
|
|
<Link href="/auth">
|
|
<a className="text-white hover:bg-gray-700 px-3 py-2 rounded-md text-sm font-medium">LOGIN</a>
|
|
</Link>
|
|
</div>
|
|
)
|
|
|
|
export default MenuNotLogado
|