From 30132bb534d521c38e2a4b333896cfa774a35f54 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 10 Oct 2025 13:12:07 +0000 Subject: [PATCH] fix: remove placeholder office address from contact page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the fake office address ('Our Office: 123 Bible Street, Faith City, FC 12345') from the contact page. Now only showing: - Email contact (contact@biblical-guide.com) Changes: - Removed address object from contactInfo array - Removed unused LocationOn icon import - Contact page now shows only valid contact information 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/[locale]/contact/page.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/[locale]/contact/page.tsx b/app/[locale]/contact/page.tsx index 5f47117..2404abc 100644 --- a/app/[locale]/contact/page.tsx +++ b/app/[locale]/contact/page.tsx @@ -14,7 +14,6 @@ import { } from '@mui/material' import { Email, - LocationOn, Send, ContactSupport, } from '@mui/icons-material' @@ -86,12 +85,6 @@ export default function Contact() { title: t('info.email.title'), content: t('info.email.content'), action: 'mailto:contact@biblical-guide.com' - }, - { - icon: , - title: t('info.address.title'), - content: t('info.address.content'), - action: null } ]