import React from 'react';

const Dashboard = () => {
  return (
    <div className="h-full bg-gray-900 text-white flex items-center justify-center p-4">
      <div className="w-full max-w-6xl h-full flex flex-col">
        <header className="mb-4">
          <h1 className="text-3xl font-bold text-green-500">
            Welcome to quikfrontend Dashboard...!
          </h1>
        </header>
      </div>
    </div>
  );
};

export default Dashboard;
