Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b418740f2 | |||
| d03338a3fb | |||
| 7addc54797 | |||
| 44ba60b811 | |||
| 55bea6a13e | |||
| 9950b8ef78 | |||
| 7d621b4317 |
@@ -38,9 +38,12 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "من نحن", id: "about"},
|
||||
{
|
||||
name: "تواصل معنا", id: "contact"},
|
||||
name: "حجز طاولة", id: "contact"},
|
||||
]}
|
||||
brandName="نكهة المطعم"
|
||||
button={{
|
||||
text: "حجز طاولة", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -206,14 +209,22 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
title="تواصل معنا"
|
||||
description="نحن جاهزون لسماع اقتراحاتكم والرد على استفساراتكم."
|
||||
title="حجز طاولة"
|
||||
description="يرجى تعبئة بيانات الحجز وسنتواصل معكم لتأكيد الحجز."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "الاسم الكامل"},
|
||||
name: "name", type: "text", placeholder: "الاسم الكامل", required: true},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "البريد الإلكتروني"},
|
||||
name: "phone", type: "tel", placeholder: "رقم الهاتف", required: true},
|
||||
{
|
||||
name: "date", type: "date", placeholder: "التاريخ", required: true},
|
||||
{
|
||||
name: "guests", type: "number", placeholder: "عدد الأشخاص", required: true},
|
||||
]}
|
||||
buttonText="إرسال طلب الحجز"
|
||||
onSubmit={(data) => {
|
||||
console.log("Sending reservation to: reservations@restaurant.com", data);
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/futuristic-kitchen-interior-design_23-2151821358.jpg"
|
||||
imageAlt="modern restaurant entrance night"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user