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

This commit is contained in:
2026-06-12 11:13:32 +00:00
parent c1408fba7a
commit beb6a27689

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>
@@ -52,7 +66,9 @@ export default function LandingPage() {
tag="About Us"
buttons={[
{
text: "Our Mission", href: "/about#mission"},
text: "Our Mission",
href: "/about#mission",
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/business-executives-reading-sticky-notes_1170-1720.jpg"
@@ -67,20 +83,44 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "m1", label: "Innovation", title: "Pioneering the Future", items: [
"Continuously exploring new technologies", "Bringing the latest gadgets to Pakistan", "Fostering a culture of creativity"],
id: "m1",
label: "Innovation",
title: "Pioneering the Future",
items: [
"Continuously exploring new technologies",
"Bringing the latest gadgets to Pakistan",
"Fostering a culture of creativity",
],
},
{
id: "m2", label: "Customer Focus", title: "Your Satisfaction, Our Priority", items: [
"Tailored solutions for every client", "Exceptional pre- and post-sales support", "Building long-term customer relationships"],
id: "m2",
label: "Customer Focus",
title: "Your Satisfaction, Our Priority",
items: [
"Tailored solutions for every client",
"Exceptional pre- and post-sales support",
"Building long-term customer relationships",
],
},
{
id: "m3", label: "Quality", title: "Excellence in Every Product", items: [
"Strict adherence to global quality standards", "Only genuine and durable products", "Ensuring peak performance and longevity"],
id: "m3",
label: "Quality",
title: "Excellence in Every Product",
items: [
"Strict adherence to global quality standards",
"Only genuine and durable products",
"Ensuring peak performance and longevity",
],
},
{
id: "m4", label: "Integrity", title: "Trust and Transparency", items: [
"Operating with honesty and ethical practices", "Transparent pricing and policies", "Building trust with every interaction"],
id: "m4",
label: "Integrity",
title: "Trust and Transparency",
items: [
"Operating with honesty and ethical practices",
"Transparent pricing and policies",
"Building trust with every interaction",
],
},
]}
title="Our Vision & Core Values"
@@ -92,12 +132,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>
);
}
}