25 lines
855 B
JavaScript
25 lines
855 B
JavaScript
import React from 'react';
|
|
import { FiMail } from 'react-icons/fi';
|
|
|
|
const Header = () => {
|
|
return (
|
|
<header className="bg-white border-b border-gray-200 sticky top-0 z-50 shadow-sm">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex items-center justify-between h-16">
|
|
<div className="flex items-center gap-3">
|
|
<div className="flex items-center justify-center w-10 h-10 bg-primary-600 rounded-lg">
|
|
<FiMail className="w-6 h-6 text-white" />
|
|
</div>
|
|
<div>
|
|
<h1 className="text-xl font-bold text-gray-900">Email Configuration</h1>
|
|
<p className="text-xs text-gray-500">Manage auto-replies and forwarding rules</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
};
|
|
|
|
export default Header;
|