Skip to content
Snippets Groups Projects
dashboard.jsx 490 B
import React from 'react'

const Dashboard = () => {
  return (
    <div className="flex flex-col items-center justify-center h-screen bg-[#D9F6F0] px-6 py-4">
      <h1 className="text-4xl font-bold text-[#0C4339] mb-6">Dashboard</h1>
      <p className="text-lg text-[#6FE7D1] mb-4">Welcome to the Admin Dashboard!</p>
      <button className="mt-4 px-4 py-2 bg-[#6FE7D1] text-white rounded hover:bg-[#5CC4AE]">
        Logout
      </button>
    </div>
  )
}


export default Dashboard;