49 lines
2.3 KiB
TypeScript
49 lines
2.3 KiB
TypeScript
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>
|
||
</>
|
||
);
|
||
} |