mirror of
https://github.com/mertJF/tailblocks.git
synced 2025-12-08 17:03:24 +00:00
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
|
|
function DarkHeaderD(props) {
|
|
return (
|
|
<header className="text-gray-500 bg-gray-900 body-font">
|
|
<div className="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
|
|
<a href className="flex title-font font-medium items-center text-white mb-4 md:mb-0">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
className={`w-10 h-10 text-white p-2 bg-${props.theme}-500 rounded-full`}
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5" />
|
|
</svg>
|
|
<span className="ml-3 text-xl">madde</span>
|
|
</a>
|
|
<nav className="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
|
|
<a href className="mr-5 hover:text-white">First Link</a>
|
|
<a href className="mr-5 hover:text-white">Second Link</a>
|
|
<a href className="mr-5 hover:text-white">Third Link</a>
|
|
<a href className="mr-5 hover:text-white">Fourth Link</a>
|
|
</nav>
|
|
<button className="inline-flex items-center bg-gray-800 border-0 py-1 px-3 focus:outline-none hover:bg-gray-700 rounded text-base mt-4 md:mt-0">
|
|
Button
|
|
<svg
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
className="w-4 h-4 ml-1"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path d="M5 12h14M12 5l7 7-7 7" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
|
|
DarkHeaderD.defaultProps = {
|
|
theme: 'indigo'
|
|
};
|
|
|
|
DarkHeaderD.propTypes = {
|
|
theme: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default DarkHeaderD;
|