Merge version_1 into main #2
300
src/app/page.tsx
300
src/app/page.tsx
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "الرئيسية",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "عن المتجر",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "المنتجات",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "آراء العملاء",
|
||||
id: "testimonials",
|
||||
},
|
||||
{ name: "الرئيسية", id: "hero" },
|
||||
{ name: "عن المتجر", id: "about" },
|
||||
{ name: "المنتجات", id: "products" },
|
||||
{ name: "آراء العملاء", id: "testimonials" },
|
||||
]}
|
||||
brandName="جنة الثمار"
|
||||
/>
|
||||
@@ -52,108 +40,35 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="خضروات وفواكه طازجة يومياً"
|
||||
description="طازج كل يوم… بجودة تستحقها عائلتك. نوفر أجود المنتجات المحلية والآسيوية والتمور الفاخرة بأسعار ممتازة."
|
||||
testimonials={[
|
||||
{
|
||||
name: "أحمد العبري",
|
||||
handle: "@ahmed",
|
||||
testimonial: "تنوع كبير وأسعار جميلة جداً",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-surface-looking-out-market-scene_23-2147701353.jpg?_wi=1",
|
||||
imageAlt: "fresh fruits display store",
|
||||
},
|
||||
{
|
||||
name: "سارة الزدجالية",
|
||||
handle: "@sarah",
|
||||
testimonial: "أفضل مكان للخضار والفواكه والتمور",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-basket-fruits-plums-apples_1321-4616.jpg?_wi=1",
|
||||
imageAlt: "fresh fruits display store",
|
||||
},
|
||||
{
|
||||
name: "محمد البلوشي",
|
||||
handle: "@mohammed",
|
||||
testimonial: "الفواكه الآسيوية ممتازة والطزاجة واضحة",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-vegetables-herbs-plate_140725-6477.jpg?_wi=1",
|
||||
imageAlt: "fresh fruits display store",
|
||||
},
|
||||
{
|
||||
name: "فاطمة الوهيبية",
|
||||
handle: "@fatima",
|
||||
testimonial: "إدارة محترمة وتعامل ممتاز",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-dragon-fruit-outdoors_23-2150295967.jpg?_wi=1",
|
||||
imageAlt: "fresh fruits display store",
|
||||
},
|
||||
{
|
||||
name: "خالد السعيدي",
|
||||
handle: "@khalid",
|
||||
testimonial: "خدمة توصيل سريعة ومنتجات نظيفة",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-wooden-bowls-with-dried-fruits-nuts-white-background-high-quality-photo_114579-38206.jpg?_wi=1",
|
||||
imageAlt: "fresh fruits display store",
|
||||
},
|
||||
{ name: "أحمد العبري", handle: "@ahmed", testimonial: "تنوع كبير وأسعار جميلة جداً", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/wooden-surface-looking-out-market-scene_23-2147701353.jpg", imageAlt: "fresh fruits display store" },
|
||||
{ name: "سارة الزدجالية", handle: "@sarah", testimonial: "أفضل مكان للخضار والفواكه والتمور", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-basket-fruits-plums-apples_1321-4616.jpg", imageAlt: "fresh fruits display store" },
|
||||
{ name: "محمد البلوشي", handle: "@mohammed", testimonial: "الفواكه الآسيوية ممتازة والطزاجة واضحة", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/various-vegetables-herbs-plate_140725-6477.jpg", imageAlt: "fresh fruits display store" },
|
||||
{ name: "فاطمة الوهيبية", handle: "@fatima", testimonial: "إدارة محترمة وتعامل ممتاز", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-dragon-fruit-outdoors_23-2150295967.jpg", imageAlt: "fresh fruits display store" },
|
||||
{ name: "خالد السعيدي", handle: "@khalid", testimonial: "خدمة توصيل سريعة ومنتجات نظيفة", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/two-wooden-bowls-with-dried-fruits-nuts-white-background-high-quality-photo_114579-38206.jpg", imageAlt: "fresh fruits display store" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "تسوق الآن",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "واتساب",
|
||||
href: "https://wa.me/96800000000",
|
||||
},
|
||||
{ text: "تسوق الآن", href: "#products" },
|
||||
{ text: "واتساب", href: "https://wa.me/96800000000" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wooden-surface-looking-out-market-scene_23-2147701353.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wooden-surface-looking-out-market-scene_23-2147701353.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg",
|
||||
alt: "A1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-smiling_23-2148454539.jpg",
|
||||
alt: "A2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg",
|
||||
alt: "A3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg",
|
||||
alt: "A4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg",
|
||||
alt: "A5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg", alt: "A1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-woman-smiling_23-2148454539.jpg", alt: "A2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg", alt: "A3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-african-american-girl-sitting-cafe_1262-3083.jpg", alt: "A4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-african-american-man-posing-library_74855-1619.jpg", alt: "A5" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "طازج يومياً",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "توصيل سريع",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "جودة عالية",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "أسعار تنافسية",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "تمور فاخرة",
|
||||
},
|
||||
{ type: "text", text: "طازج يومياً" },
|
||||
{ type: "text", text: "توصيل سريع" },
|
||||
{ type: "text", text: "جودة عالية" },
|
||||
{ type: "text", text: "أسعار تنافسية" },
|
||||
{ type: "text", text: "تمور فاخرة" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -165,28 +80,13 @@ export default function LandingPage() {
|
||||
title="لماذا يختارنا العملاء؟"
|
||||
description="نحن نؤمن بأن عائلتك تستحق الأفضل، لذا نحرص على انتقاء أجود الثمار من المزارع مباشرة."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "تنوع كبير يومياً",
|
||||
description: "خيارات واسعة من الخضروات والفواكه الطازجة.",
|
||||
},
|
||||
{
|
||||
title: "أسعار ممتازة",
|
||||
description: "نوفر أفضل قيمة مقابل السعر في السوق.",
|
||||
},
|
||||
{
|
||||
title: "جودة عالية",
|
||||
description: "منتجات مختارة بعناية فائقة للجودة.",
|
||||
},
|
||||
{
|
||||
title: "تمور عمانية",
|
||||
description: "تشكيلة فاخرة من التمور والمكسرات.",
|
||||
},
|
||||
{
|
||||
title: "إدارة محلية",
|
||||
description: "إدارة عمانية 100% بخبرة مميزة.",
|
||||
},
|
||||
{ title: "تنوع كبير يومياً", description: "خيارات واسعة من الخضروات والفواكه الطازجة." },
|
||||
{ title: "أسعار ممتازة", description: "نوفر أفضل قيمة مقابل السعر في السوق." },
|
||||
{ title: "جودة عالية", description: "منتجات مختارة بعناية فائقة للجودة." },
|
||||
{ title: "تمور عمانية", description: "تشكيلة فاخرة من التمور والمكسرات." },
|
||||
{ title: "إدارة محلية", description: "إدارة عمانية 100% بخبرة مميزة." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-with-basket-fruits-plums-apples_1321-4616.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-with-basket-fruits-plums-apples_1321-4616.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -198,37 +98,25 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "الخضروات الطازجة",
|
||||
description: "خضار موسمية ومحلية طازجة يومياً.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-vegetables-herbs-plate_140725-6477.jpg?_wi=2",
|
||||
title: "الخضروات الطازجة", description: "خضار موسمية ومحلية طازجة يومياً.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/various-vegetables-herbs-plate_140725-6477.jpg", imageAlt: "assorted fresh vegetables"
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-surface-looking-out-market-scene_23-2147701353.jpg?_wi=3",
|
||||
imageAlt: "assorted fresh vegetables",
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "الفواكه الآسيوية",
|
||||
description: "نكهات نادرة ومميزة من المانجو والدوريان.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-dragon-fruit-outdoors_23-2150295967.jpg?_wi=2",
|
||||
title: "الفواكه الآسيوية", description: "نكهات نادرة ومميزة من المانجو والدوريان.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-cutting-dragon-fruit-outdoors_23-2150295967.jpg", imageAlt: "assorted fresh vegetables"
|
||||
},
|
||||
items: [],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-basket-fruits-plums-apples_1321-4616.jpg?_wi=3",
|
||||
imageAlt: "assorted fresh vegetables",
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "التمور والمكسرات",
|
||||
description: "أجود التمور العمانية والمكسرات المختارة.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-wooden-bowls-with-dried-fruits-nuts-white-background-high-quality-photo_114579-38206.jpg?_wi=2",
|
||||
title: "التمور والمكسرات", description: "أجود التمور العمانية والمكسرات المختارة.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-wooden-bowls-with-dried-fruits-nuts-white-background-high-quality-photo_114579-38206.jpg", imageAlt: "assorted fresh vegetables"
|
||||
},
|
||||
items: [],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/farmer-picking-fresh-ripe-tomato-vegetables-market-sale_342744-1371.jpg?_wi=1",
|
||||
imageAlt: "assorted fresh vegetables",
|
||||
reverse: false
|
||||
},
|
||||
]}
|
||||
title="أقسامنا المتنوعة"
|
||||
@@ -243,42 +131,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "طماطم طازجة",
|
||||
price: "1.500 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/farmer-picking-fresh-ripe-tomato-vegetables-market-sale_342744-1371.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "مانجو تايلندي",
|
||||
price: "2.200 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pineapple-other-exotic-fruits-basket-white-background-top-view_169016-23830.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "تمر خلاص",
|
||||
price: "3.500 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cups-with-plant-twigs-dried-fruits-tray_23-2148081006.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "كاجو محمص",
|
||||
price: "4.000 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overturned-paper-bag-filled-with-healthy-raw-cashew-nuts_23-2148675507.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "خيار طازج",
|
||||
price: "0.800 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-fresh-vegetables-cherry-tomatoes-cumcuat-cauliflower-radish-green-onion-dill-cucumbers-bell-peppers-lemon-with-free-space_140725-102739.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "فراولة",
|
||||
price: "1.200 OMR",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-shot-person-holding-loganberries_181624-3274.jpg",
|
||||
},
|
||||
{ id: "p1", name: "طماطم طازجة", price: "1.500 OMR", imageSrc: "http://img.b2bpic.net/free-photo/farmer-picking-fresh-ripe-tomato-vegetables-market-sale_342744-1371.jpg" },
|
||||
{ id: "p2", name: "مانجو تايلندي", price: "2.200 OMR", imageSrc: "http://img.b2bpic.net/free-photo/pineapple-other-exotic-fruits-basket-white-background-top-view_169016-23830.jpg" },
|
||||
{ id: "p3", name: "تمر خلاص", price: "3.500 OMR", imageSrc: "http://img.b2bpic.net/free-photo/cups-with-plant-twigs-dried-fruits-tray_23-2148081006.jpg" },
|
||||
{ id: "p4", name: "كاجو محمص", price: "4.000 OMR", imageSrc: "http://img.b2bpic.net/free-photo/overturned-paper-bag-filled-with-healthy-raw-cashew-nuts_23-2148675507.jpg" },
|
||||
{ id: "p5", name: "خيار طازج", price: "0.800 OMR", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-fresh-vegetables-cherry-tomatoes-cumcuat-cauliflower-radish-green-onion-dill-cucumbers-bell-peppers-lemon-with-free-space_140725-102739.jpg" },
|
||||
{ id: "p6", name: "فراولة", price: "1.200 OMR", imageSrc: "http://img.b2bpic.net/free-photo/close-shot-person-holding-loganberries_181624-3274.jpg" },
|
||||
]}
|
||||
title="منتجات طازجة"
|
||||
description="اكتشف تشكيلتنا المختارة من أفضل المنتجات اليومية."
|
||||
@@ -292,26 +150,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="خالد العامري"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/closeup-shot-handsome-male-smiling_181624-41237.jpg",
|
||||
alt: "A1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg",
|
||||
alt: "A2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-cute-smiling-boy-cafe_23-2148436234.jpg",
|
||||
alt: "A3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg",
|
||||
alt: "A4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg",
|
||||
alt: "A5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/closeup-shot-handsome-male-smiling_181624-41237.jpg", alt: "A1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg", alt: "A2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-cute-smiling-boy-cafe_23-2148436234.jpg", alt: "A3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg", alt: "A4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg", alt: "A5" },
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -321,21 +164,13 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="تواصل معنا"
|
||||
title="جاهز للطلب؟"
|
||||
description="اطلب احتياجاتك عبر واتساب أو تواصل معنا لأي استفسار."
|
||||
buttons={[
|
||||
{
|
||||
text: "اطلب عبر واتساب",
|
||||
href: "https://wa.me/96800000000",
|
||||
},
|
||||
{
|
||||
text: "اتصل بنا",
|
||||
href: "tel:96800000000",
|
||||
},
|
||||
{ text: "اطلب عبر واتساب", href: "https://wa.me/96800000000" },
|
||||
{ text: "اتصل بنا", href: "tel:96800000000" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -346,33 +181,16 @@ export default function LandingPage() {
|
||||
logoText="جنة الثمار"
|
||||
columns={[
|
||||
{
|
||||
title: "روابط سريعة",
|
||||
items: [
|
||||
{
|
||||
label: "الرئيسية",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "المنتجات",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "تواصل معنا",
|
||||
href: "#contact",
|
||||
},
|
||||
title: "روابط سريعة", items: [
|
||||
{ label: "الرئيسية", href: "#hero" },
|
||||
{ label: "المنتجات", href: "#products" },
|
||||
{ label: "تواصل معنا", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "أوقات العمل",
|
||||
items: [
|
||||
{
|
||||
label: "يومياً: 8:00 - 22:00",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "موقعنا: مسقط",
|
||||
href: "#",
|
||||
},
|
||||
title: "أوقات العمل", items: [
|
||||
{ label: "يومياً: 8:00 - 22:00", href: "#" },
|
||||
{ label: "موقعنا: مسقط", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user