Spaces:
Running
Running
File size: 641 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
// 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;
|