Switch to version 3: modified src/app/contact/page.tsx

This commit is contained in:
2026-06-12 11:13:33 +00:00
parent 146afd1584
commit 61dffe455a

View File

@@ -26,21 +26,35 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
name: "Home",
id: "/",
},
{
name: "Shop", id: "/shop"},
name: "Shop",
id: "/shop",
},
{
name: "Categories", id: "/categories"},
name: "Categories",
id: "/categories",
},
{
name: "About Us", id: "/about"},
name: "About Us",
id: "/about",
},
{
name: "Testimonials", id: "/testimonials"},
name: "Testimonials",
id: "/testimonials",
},
{
name: "Contact Us", id: "/contact"},
name: "Contact Us",
id: "/contact",
},
]}
brandName="FKTechnology"
button={{
text: "WhatsApp Us", href: "https://wa.me/+923009296360"}}
text: "WhatsApp Us",
href: "https://wa.me/+923001234567",
}}
/>
</div>
@@ -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() {
<FooterLogoReveal
logoText="FKTechnology"
leftLink={{
text: "About Us", href: "/about"}}
text: "About Us",
href: "/about",
}}
rightLink={{
text: "Contact Us", href: "/contact"}}
text: "Contact Us",
href: "/contact",
}}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}