Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-23 21:48:00 +00:00

View File

@@ -2,16 +2,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
export default function LandingPage() {
return (
@@ -130,16 +130,15 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
<TestimonialCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "John Smith", handle: "Global Food Importers", testimonial: "Sakr Qorash delivers consistent quality. Their produce is the best in the market.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesspeople-with-luggage-standing-front-escalator_107420-95768.jpg" },
{ id: "2", name: "Maria Garcia", handle: "EU Retail Group", testimonial: "Impeccable cold chain management and professional service.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg" },
{ id: "3", name: "Ahmed Hassan", handle: "MENA Wholesale", testimonial: "Our logistics partner of choice for Egyptian exports.", imageSrc: "http://img.b2bpic.net/free-photo/bio-store-client-shops-fruits_482257-92140.jpg" },
{ id: "4", name: "David Brown", handle: "Global Retail Chain", testimonial: "Sakr Qorash always meets our demand deadlines reliably.", imageSrc: "http://img.b2bpic.net/free-photo/two-people-working-warehouse_329181-12808.jpg" },
{ id: "5", name: "Linda Chen", handle: "Asia Fresh Trade", testimonial: "High quality produce and excellent pricing structure.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-young-entrepreneur-standing-looking-camera-crossing-arms-smiling_482257-5018.jpg" },
{ id: "1", name: "John Smith", role: "Director", company: "Global Food Importers", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesspeople-with-luggage-standing-front-escalator_107420-95768.jpg" },
{ id: "2", name: "Maria Garcia", role: "Manager", company: "EU Retail Group", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg" },
{ id: "3", name: "Ahmed Hassan", role: "CEO", company: "MENA Wholesale", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/bio-store-client-shops-fruits_482257-92140.jpg" },
]}
title="What Our Partners Say"
description="Trusted by global retailers and distributors."
@@ -147,7 +146,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
@@ -155,41 +154,42 @@ export default function LandingPage() {
{ id: "f2", title: "How is quality controlled?", content: "We adhere to international phytosanitary standards." },
{ id: "f3", title: "Where are you based?", content: "Our headquarters are in Moharem Pasha, Alexandria, Egypt." },
]}
imageSrc="http://img.b2bpic.net/free-photo/aerial-shot-large-shipping-containers-area_181624-3151.jpg"
title="Frequently Asked Questions"
description="Everything you need to know about our export services."
faqsAnimation="slide-up"
mediaAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
<ContactSplitForm
title="Partner with Sakr Qorash"
description="Contact us today for product pricing, availability, and export inquiries from Alexandria."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
]}
buttonText="Submit Inquiry"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="Sakr Qorash"
columns={[
{ title: "Sakr Qorash", items: [
{ label: "Moharem Pasha, Alexandria, Egypt", href: "#" },
{ title: "Resources", items: [
{ label: "Our Services", href: "#products" },
{ label: "Quality Standards", href: "#" },
]},
{ title: "Contact", items: [
{ label: "Moharem Pasha, Alexandria", href: "#" },
{ label: "info@sakrqorash.com", href: "mailto:info@sakrqorash.com" },
]},
{ title: "Services", items: [
{ label: "Produce Export", href: "#products" },
{ label: "Agricultural Import", href: "#" },
]},
]}
bottomLeftText="© 2024 Sakr Qorash Agricultural Export."
bottomRightText="All rights reserved."
copyrightText="© 2024 Sakr Qorash Agricultural Export."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}