ocr / src /components /OCRHeader.jsx
ariansyahdedy's picture
Initial commit with clean Git repository
4fb0c68
raw
history blame contribute delete
641 Bytes
// src/components/Header.jsx
import React from 'react';
function Header() {
return (
<div className="flex justify-between items-center mb-4">
<h1 className="text-2xl font-semibold text-gray-700">OCR Dashboard</h1>
<div className="flex space-x-4">
<button className="bg-blue-500 text-white py-2 px-4 rounded-lg hover:bg-blue-600 transition duration-200">
Contact us
</button>
<button className="bg-green-500 text-white py-2 px-4 rounded-lg hover:bg-green-600 transition duration-200">
Get Your Free Trial
</button>
</div>
</div>
);
};
export default Header;