diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 7034009..6ceddf8 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -26,21 +26,35 @@ export default function LandingPage() {
@@ -51,17 +65,28 @@ export default function LandingPage() {
description="Have a question or need support? Our team is here to help. Fill out the form below or reach us directly via our contact details."
inputs={[
{
- name: "Name", type: "text", placeholder: "Your Name", required: true,
+ name: "Name",
+ type: "text",
+ placeholder: "Your Name",
+ required: true,
},
{
- name: "Email", type: "email", placeholder: "Your Email", required: true,
+ name: "Email",
+ type: "email",
+ placeholder: "Your Email",
+ required: true,
},
{
- name: "Subject", type: "text", placeholder: "Subject", required: true,
+ name: "Subject",
+ type: "text",
+ placeholder: "Subject",
+ required: true,
},
]}
textarea={{
- name: "Message", placeholder: "Your Message", rows: 4,
+ name: "Message",
+ placeholder: "Your Message",
+ rows: 4,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/office-workplace-with-laptop-glasses-wood-table_1423-43.jpg"
@@ -79,27 +104,48 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
- id: "ci1", label: "Phone", title: "Call Us Directly", items: [
- "+92 300 1234567 (WhatsApp available)", "Mon-Fri, 9 AM - 6 PM PST"],
+ id: "ci1",
+ label: "Phone",
+ title: "Call Us Directly",
+ items: [
+ "+92 300 1234567 (WhatsApp available)",
+ "Mon-Fri, 9 AM - 6 PM PST",
+ ],
buttons: [
{
- text: "Call Now", href: "tel:+923001234567"},
+ text: "Call Now",
+ href: "tel:+923001234567",
+ },
],
},
{
- id: "ci2", label: "Email", title: "Send Us an Email", items: [
- "info@fktechnology.com", "Expect a response within 24 hours"],
+ id: "ci2",
+ label: "Email",
+ title: "Send Us an Email",
+ items: [
+ "info@fktechnology.com",
+ "Expect a response within 24 hours",
+ ],
buttons: [
{
- text: "Email Us", href: "mailto:info@fktechnology.com"},
+ text: "Email Us",
+ href: "mailto:info@fktechnology.com",
+ },
],
},
{
- id: "ci3", label: "Address", title: "Visit Our Store in Karachi", items: [
- "123 Tech Avenue, Saddar", "Karachi, Sindh, Pakistan"],
+ id: "ci3",
+ label: "Address",
+ title: "Visit Our Store in Karachi",
+ items: [
+ "123 Tech Avenue, Saddar",
+ "Karachi, Sindh, Pakistan",
+ ],
buttons: [
{
- text: "Get Directions", href: "https://maps.app.goo.gl/YOUR_GOOGLE_MAPS_LINK"},
+ text: "Get Directions",
+ href: "https://maps.app.goo.gl/YOUR_GOOGLE_MAPS_LINK",
+ },
],
},
]}
@@ -112,12 +158,16 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}