+
) : (
diff --git a/src/app/about-antalya-restaurant/about.module.css b/src/app/about-antalya-restaurant/about.module.css
index 359b19d..722f95b 100644
--- a/src/app/about-antalya-restaurant/about.module.css
+++ b/src/app/about-antalya-restaurant/about.module.css
@@ -97,7 +97,7 @@
font-family: var(--font-playfair);
font-size: 2.5rem;
color: var(--color-paragraph);
- margin-bottom: 3rem;
+ margin-bottom: 10px;
text-align: center;
/* text-transform: uppercase; */
letter-spacing: 2px;
@@ -214,7 +214,7 @@
max-width: 900px;
margin: 0 auto;
position: relative;
- padding: 0 70px;
+ padding: 20px 70px 0px 70px;
}
.sliderBtn {
@@ -663,7 +663,7 @@
max-width: 900px;
margin: 0 auto;
position: relative;
- padding: 0 10px !important;
+ padding: 20px 10px 0px 10px !important;
/* Reduced side padding (enough for arrows) */
}
diff --git a/src/components/GoogleReviewsBranding.tsx b/src/components/GoogleReviewsBranding.tsx
new file mode 100644
index 0000000..df3a22e
--- /dev/null
+++ b/src/components/GoogleReviewsBranding.tsx
@@ -0,0 +1,56 @@
+import React from 'react';
+
+const GoogleReviewsBranding = ({ centered = false }) => {
+ return (
+
+
+ G
+ o
+ o
+ g
+ l
+ e
+
+
+
Reviews
+
+ ★
+ ★
+ ★
+ ★
+ ★
+
+
+
+ );
+};
+
+export default GoogleReviewsBranding;
\ No newline at end of file
diff --git a/src/components/Testimonials/Testimonials.module.css b/src/components/Testimonials/Testimonials.module.css
index a13775b..342d56e 100644
--- a/src/components/Testimonials/Testimonials.module.css
+++ b/src/components/Testimonials/Testimonials.module.css
@@ -30,7 +30,7 @@
font-size: 2.5rem;
color: var(--color-paragraph);
text-align: center;
- margin-bottom: 60px;
+ margin-bottom: 10px;
letter-spacing: 2px;
/* text-transform: uppercase; */
font-weight: 400;
@@ -44,7 +44,7 @@
max-width: 1400px;
width: 100%;
position: relative;
- padding: 0 60px;
+ padding: 20px 60px 0px 60px;
/* Space for arrows */
}
@@ -221,13 +221,13 @@
/* Responsive adjustments for different viewport sizes */
@media (max-width: 1400px) {
.sliderContainer {
- padding: 0 50px;
+ padding: 20px 50px 0px 50px;
}
}
@media (max-width: 1200px) {
.sliderContainer {
- padding: 0 40px;
+ padding: 20px 40px 0px 40px;
}
}
@@ -249,12 +249,12 @@
@media (max-width: 1024px) {
.sliderContainer {
- padding: 0 45px;
+ padding: 20px 45px 0px 45px;
}
.title {
font-size: 2.5rem;
- margin-bottom: 40px;
+ margin-bottom: 10px;
}
.navBtn {
@@ -275,7 +275,7 @@
@media (max-width: 768px) {
.sliderContainer {
- padding: 0 35px;
+ padding: 20px 35px 0px 35px;
}
.card {
@@ -308,7 +308,7 @@
@media (max-width: 480px) {
.sliderContainer {
- padding: 0 30px;
+ padding: 20px 30px 0px 30px;
}
.title {
diff --git a/src/components/Testimonials/Testimonials.tsx b/src/components/Testimonials/Testimonials.tsx
index d79ab63..e3f4302 100644
--- a/src/components/Testimonials/Testimonials.tsx
+++ b/src/components/Testimonials/Testimonials.tsx
@@ -8,6 +8,7 @@ import { Autoplay, Navigation } from 'swiper/modules'
import 'swiper/css'
import 'swiper/css/navigation'
import { FaStar, FaChevronLeft, FaChevronRight } from 'react-icons/fa'
+import GoogleReviewsBranding from '../GoogleReviewsBranding'
@@ -162,10 +163,11 @@ export default function Testimonials() {