From c6da9a9db0c41391993634589e1df7e9c4624945 Mon Sep 17 00:00:00 2001 From: Sabda Yagra Date: Wed, 25 Feb 2026 19:27:52 +0700 Subject: [PATCH] fix: Image in footer --- app/[locale]/(public)/contact/page.tsx | 7 ++++- app/[locale]/(public)/faqs/page.tsx | 5 ++-- app/[locale]/(public)/feedback/page.tsx | 37 ++++++++++++++++++++----- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/app/[locale]/(public)/contact/page.tsx b/app/[locale]/(public)/contact/page.tsx index 5901c289..08e702c2 100644 --- a/app/[locale]/(public)/contact/page.tsx +++ b/app/[locale]/(public)/contact/page.tsx @@ -113,7 +113,12 @@ const ContactForm = () => { {/* Header */}
- contact + contact

{t("contactUs", { defaultValue: "Contact Us" })}

diff --git a/app/[locale]/(public)/faqs/page.tsx b/app/[locale]/(public)/faqs/page.tsx index 65665137..19695e0e 100644 --- a/app/[locale]/(public)/faqs/page.tsx +++ b/app/[locale]/(public)/faqs/page.tsx @@ -43,11 +43,10 @@ const FAQS: React.FC = () => {
Faqs

Frequently Asked Questions diff --git a/app/[locale]/(public)/feedback/page.tsx b/app/[locale]/(public)/feedback/page.tsx index 4478c1f1..97140e3f 100644 --- a/app/[locale]/(public)/feedback/page.tsx +++ b/app/[locale]/(public)/feedback/page.tsx @@ -25,7 +25,11 @@ const Rating: React.FC = ({ label, onRate }) => { {label}
{[1, 2, 3, 4, 5].map((star) => ( - ))} @@ -120,16 +124,35 @@ const FeedbackForm: React.FC = () => {
- Feedback -

{t("userFeedback", { defaultValue: "User Feedback" })}

+ Feedback +

+ {t("userFeedback", { defaultValue: "User Feedback" })} +

- handleRatingChange("accessibility", rating)} /> - handleRatingChange("appearance", rating)} /> - handleRatingChange("content", rating)} /> + handleRatingChange("accessibility", rating)} + /> + handleRatingChange("appearance", rating)} + /> + handleRatingChange("content", rating)} + />
-