Files
df642fc6-e0b3-4a23-ade3-cef…/src/pages/ContactPage.tsx

49 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import ContactCta from '@/components/sections/contact/ContactCta';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactPage() {
return (
<>
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Rəylər"
title="Müştərilərimiz nə deyir?"
description="Müştərilərimizin bizə olan yüksək etimadını görmək bizi çox sevindirir."
testimonials={[
{
name: "Ramiz Qurbanov", role: "Müştəri", company: "Pluton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-family-studio-background-christmas-tree-with-gift_1328-2085.jpg"},
{
name: "Roma Smertnıy", role: "Müştəri", company: "Pluton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/newlyweds-looking-each-other-s-face_1153-1304.jpg"},
{
name: "Natalya", role: "Müştəri", company: "Pluton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/top-view-table-arrangement-with-flowers_23-2148966227.jpg"},
{
name: "Resid Hüseynov", role: "Müştəri", company: "Pluton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-luxurious-wedding-ceremony-hall_181624-59290.jpg"},
{
name: "Mahsun Musayev", role: "Müştəri", company: "Pluton", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/elegant-wedding-reception-table-setting-with-flowers-candles_23-2151976621.jpg"},
]}
/>
</SectionErrorBoundary>
</div>
<div id="cta" data-section="cta">
<SectionErrorBoundary name="cta">
<ContactCta
tag="Rezervasiya"
text="Xüsusi gününüzü bizə həvalə edin."
primaryButton={{
text: "İndi zəng edin", href: "tel:+994500000000"}}
secondaryButton={{
text: "Mesaj yazın", href: "mailto:info@pluton.az"}}
/>
</SectionErrorBoundary>
</div>
</>
);
}