Streamline contact information by removing phone number and opening hours

Removes phone number and opening hours from ContactSection component in contact-section.tsx.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 88cd88e4-2dbe-4df6-8c8a-7e38f13ef1ec
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/711adcd2-27ef-4df1-99bc-1e248e30cd9d.jpg
This commit is contained in:
JeffEmmett 2025-05-21 12:17:08 +00:00
parent 51bec7f282
commit acca93e61d
1 changed files with 1 additions and 24 deletions

View File

@ -103,30 +103,7 @@ export function ContactSection() {
</div>
</div>
<div className="flex items-start">
<div className="mt-1 mr-3 text-teal">
<i className="fas fa-phone-alt"></i>
</div>
<div>
<h4 className="font-playfair font-medium">Phone</h4>
<a href="tel:+20123456789" className="text-gray-600 hover:text-teal transition duration-300">
+20 123 456 789
</a>
</div>
</div>
<div className="flex items-start">
<div className="mt-1 mr-3 text-teal">
<i className="fas fa-clock"></i>
</div>
<div>
<h4 className="font-playfair font-medium">Hours</h4>
<p className="text-gray-600">
Monday - Friday: 9am - 6pm<br/>
Saturday: 10am - 2pm
</p>
</div>
</div>
{/* Phone and hours removed as requested */}
</div>
</div>