parent
30fa03f28b
commit
01c4408c71
3 changed files with 59 additions and 12 deletions
@ -0,0 +1,43 @@ |
|||||||
|
import React from "react"; |
||||||
|
|
||||||
|
const HeaderDesign1 = () => { |
||||||
|
return ( |
||||||
|
<header className="p-4"> |
||||||
|
<div class="container flex justify-between items-center mx-auto py-2 px-8 md:px-14 lg:px-24 w-full bg-white rounded shadow-sm"> |
||||||
|
<div class="text-lg font-bold text-productPrice w-1/5 "> |
||||||
|
Design System |
||||||
|
</div> |
||||||
|
<div class="hidden lg:flex items-center justify-around w-3/5"> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
محصولات |
||||||
|
</a> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
دسته بندی |
||||||
|
</a> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
تماس با ما |
||||||
|
</a> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
درباره ما |
||||||
|
</a> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
پیگیری |
||||||
|
</a> |
||||||
|
<a href="#" className="text-productPrice"> |
||||||
|
وبلاگ |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
<div className="w-1/5 flex justify-end"> |
||||||
|
<button className="ml-2 py-2 px-8 text-productPrice text-sm font-light rounded border border-darkCrimsonBorderColor"> |
||||||
|
ورود |
||||||
|
</button> |
||||||
|
<button className="py-2 px-8 text-white text-sm font-light rounded bg-darkCrimsonBgColor"> |
||||||
|
ثبت نام |
||||||
|
</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</header> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default HeaderDesign1; |
Loading…
Reference in new issue