16 lines
No EOL
437 B
JavaScript
16 lines
No EOL
437 B
JavaScript
"use client"
|
|
import { LogoutLink } from '@kinde-oss/kinde-auth-nextjs'
|
|
import React from 'react'
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<div>
|
|
This is a dashboard page
|
|
<LogoutLink>
|
|
<button className='px-2 py-1 sm:px-4 sm:py-2 bg-[#101010] text-white rounded-full font-semibold hover:opacity-85 duration-300 text-sm sm:text-md'>Logout</button>
|
|
</LogoutLink>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Dashboard |