-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
130 additions
and
2 deletions.
There are no files selected for viewing
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,9 @@ | ||
import Header from '../../ui/header'; | ||
|
||
export default function Layout({children,}: {children: React.ReactNode;}) { | ||
return ( | ||
<div className="dark-mode"> | ||
{children} | ||
</div> | ||
) | ||
} |
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,79 @@ | ||
import Breadcrumb from "@/app/ui/breadcrumb"; | ||
import Cart from "@/app/ui/cart"; | ||
|
||
const SearchPage = () =>{ | ||
return ( | ||
<section className="confirm-order-section d-flex container"> | ||
<div className="confirm-order-wrapper flex-grow-1"> | ||
<Breadcrumb /> | ||
<div className="address-wrapper mb-3"> | ||
<div className="heading"> | ||
<div className="title ">Giao đến</div> | ||
</div> | ||
<div className="address"> | ||
<form> | ||
<div className="mb-3"> | ||
<label htmlFor="exampleInputEmail1" className="form-label">Tỉnh / Thành phố</label> | ||
<select className="form-select form-select-lg mb-3" aria-label=".form-select-lg example"> | ||
<option selected>Ho CHi Minh</option> | ||
<option value="1">One</option> | ||
<option value="2">Two</option> | ||
<option value="3">Three</option> | ||
</select> | ||
</div> | ||
<div className="row mb-3"> | ||
<div className="col"> | ||
<label htmlFor="exampleInputEmail1" className="form-label">Quận / Huyện</label> | ||
<input type="text" className="form-control" placeholder="First name" aria-label="First name"/> | ||
</div> | ||
<div className="col"> | ||
<label htmlFor="exampleInputEmail1" className="form-label">Phường / Xã</label> | ||
<input type="text" className="form-control" placeholder="Last name" aria-label="Last name"/> | ||
</div> | ||
</div> | ||
<div className="mb-3"> | ||
<label htmlFor="exampleInputEmail1" className="form-label">Số nhà & Tên đường</label> | ||
<input type="text" className="form-control" placeholder="24 Nguyen Dinh thi" aria-label="Last name"/> | ||
</div> | ||
<div className="mb-3"> | ||
<label htmlFor="exampleInputEmail1" className="form-label">Ghi chú cho tài xế</label> | ||
<input type="text" className="form-control" placeholder="24 Nguyen Dinh thi" aria-label="Last name"/> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
<div className="delivery-timer-section mb-3"> | ||
<div className="heading"> | ||
<div className="title ">Thời gian giao hàng</div> | ||
</div> | ||
<div className="delivery-timer"> | ||
<input type="text" className="delivery-timer-day mx-2" placeholder="Hôm nay" /> | ||
<input type="text" className="delivery-timer-time" placeholder="11h30 - 12h" /> | ||
</div> | ||
</div> | ||
<div className="packing-section mb-3"> | ||
<div className="heading"> | ||
<div className="title ">Đóng gói</div> | ||
</div> | ||
</div> | ||
<div className="payment-section mb-3"> | ||
<div className="heading"> | ||
<div className="title ">Phương thức thanh toán</div> | ||
</div> | ||
<div className="payment"> | ||
|
||
</div> | ||
</div> | ||
<div className="voucher-section mb-3"> | ||
<div className="heading"> | ||
<div className="title ">Khuyến mãi</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<Cart /> | ||
</section> | ||
) | ||
} | ||
|
||
export default SearchPage; |
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
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