-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
660d841
commit 892b95d
Showing
35 changed files
with
418 additions
and
144 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from "react"; | ||
|
||
const CardForSlider = () => { | ||
return ( | ||
<div className="bg-white shadow-lg rounded-lg p-2 flex flex-col gap-2"> | ||
<div className="relative"> | ||
<img src="./images/products/1.jpg" alt="" className="rounded-lg" /> | ||
<p className="absolute top-3 right-4">مردانه</p> | ||
</div> | ||
<div className="px-4 flex pb-6"> | ||
<h2 className="font-semibold">پلیور مردانه کروم مدل یقه اسکی</h2> | ||
</div> | ||
<div className="flex justify-end px-4"> | ||
<h2> | ||
<span className="font-medium">1,144,500 </span> | ||
<span className="text-gray-600 font-light">تومان</span> | ||
</h2> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CardForSlider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import CardForSlider from "./CardForSlider"; | ||
|
||
const CardSlider = () => { | ||
return ( | ||
<div className=" w-full p-4 flex bg-neutral-200" dir="rtl"> | ||
<div className="flex flex-col p-4 gap-32 items-center"> | ||
<h1>زنانه</h1> | ||
<button>مشاهده همه</button> | ||
</div> | ||
<div className="flex gap-4"> | ||
<CardForSlider /> | ||
<CardForSlider /> | ||
<CardForSlider /> | ||
<CardForSlider /> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CardSlider; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from "react"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className="flex justify-between py-4 px-12 border-t " dir="rtl"> | ||
<div className="flex flex-col gap-2"> | ||
<h2 className="border-b p-2">خرید</h2> | ||
<a>زنانه</a> | ||
<a>مردانه</a> | ||
<a>بچگانه</a> | ||
<a>زیبایی و سلامت</a> | ||
</div> | ||
<div className="flex flex-col gap-2"> | ||
<h2 className="border-b p-2">خدمات مشتریان</h2> | ||
<a>پاسخ به پرسش های متداول</a> | ||
<a>رویه بازگرداندن کالا</a> | ||
<a>شرایط استفاده</a> | ||
<a>حریم خصوصی</a> | ||
</div> | ||
<div className="flex flex-col gap-2"> | ||
<h2 className="border-b p-2">اطلاعات زاک استور</h2> | ||
<a>درباره زاک استور</a> | ||
<a>تماس با زاک استور</a> | ||
<a>همکاری با زاک استور</a> | ||
</div> | ||
<div className="flex flex-col gap-2"> | ||
<h2 className="border-b p-2">خرید</h2> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |
Oops, something went wrong.