Update src/app/approach/page.tsx

This commit is contained in:
2026-06-07 12:50:50 +00:00
parent 7399c9d149
commit e77b957bcf

View File

@@ -27,37 +27,21 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Approach",
id: "/approach",
},
name: "Approach", id: "/approach"},
{
name: "Company",
id: "/company",
},
name: "Company", id: "/company"},
{
name: "Cases",
id: "/cases",
},
name: "Cases", id: "/cases"},
{
name: "Insights",
id: "/insights",
},
name: "Insights", id: "/insights"},
{
name: "Careers",
id: "/careers",
},
name: "Careers", id: "/careers"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="K&K Solution Inc."
/>
@@ -70,35 +54,17 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "stage-1",
title: "Phase I: Strategic Deep Dive",
tags: [
"Discovery",
"Analysis",
],
imageSrc: "http://img.b2bpic.net/free-photo/jacket-businessman-projection-sophisticated-urban_1134-1188.jpg",
imageAlt: "Strategic Deep Dive icon",
},
id: "stage-1", title: "Phase I: Strategic Deep Dive", tags: [
"Discovery", "Analysis"],
imageSrc: "http://img.b2bpic.net/free-photo/jacket-businessman-projection-sophisticated-urban_1134-1188.jpg", imageAlt: "Strategic Deep Dive icon"},
{
id: "stage-2",
title: "Phase II: Tailored Solution Design",
tags: [
"Customization",
"Blueprint",
],
imageSrc: "http://img.b2bpic.net/free-vector/golden-frame-collection_23-2148047974.jpg",
imageAlt: "Tailored Solution Design icon",
},
id: "stage-2", title: "Phase II: Tailored Solution Design", tags: [
"Customization", "Blueprint"],
imageSrc: "http://img.b2bpic.net/free-vector/golden-frame-collection_23-2148047974.jpg", imageAlt: "Tailored Solution Design icon"},
{
id: "stage-3",
title: "Phase III: Execution & Sustainment",
tags: [
"Implementation",
"Monitoring",
],
imageSrc: "http://img.b2bpic.net/free-vector/geometric-golden-frame-collection_23-2148053424.jpg",
imageAlt: "Execution & Sustainment icon",
},
id: "stage-3", title: "Phase III: Execution & Sustainment", tags: [
"Implementation", "Monitoring"],
imageSrc: "http://img.b2bpic.net/free-vector/geometric-golden-frame-collection_23-2148053424.jpg", imageAlt: "Execution & Sustainment icon"},
]}
title="Our 3-Stage Quality Assurance Method"
description="A meticulous process ensuring unparalleled quality and tangible results."
@@ -110,9 +76,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="BCG/McKinsey Expertise, Japan-Focused Insight"
description={[
"Our consultants bring the rigorous analytical frameworks and strategic prowess honed at top global firms like BCG and McKinsey. This international-grade expertise is then fused with an unparalleled understanding of the unique nuances and operational realities of Japanese enterprises.",
"We don't just apply global best practices; we adapt them to create solutions that resonate deeply and drive sustainable change within the Japanese business context. It's strategy that truly works.",
]}
"Our consultants bring the rigorous analytical frameworks and strategic prowess honed at top global firms like BCG and McKinsey. This international-grade expertise is then fused with an unparalleled understanding of the unique nuances and operational realities of Japanese enterprises.", "We don't just apply global best practices; we adapt them to create solutions that resonate deeply and drive sustainable change within the Japanese business context. It's strategy that truly works."]}
/>
</div>
@@ -120,101 +84,66 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Discover the K&K difference for your next project."
buttons={[
{
text: "Learn More",
href: "/contact",
},
text: "Learn More", href: "/contact"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoSrc="http://img.b2bpic.net/free-vector/letter-k-luxury-brand-logo-concept-design-vector_1055-13164.jpg"
logoAlt="K&K Solution Inc. Logo"
columns={[
{
items: [
{
label: "About Us",
href: "/company",
},
label: "About Us", href: "/company"},
{
label: "Our Approach",
href: "/approach",
},
label: "Our Approach", href: "/approach"},
{
label: "Careers",
href: "/careers",
},
label: "Careers", href: "/careers"},
],
},
{
items: [
{
label: "IT Strategy & DX",
href: "/services#it-strategy",
},
label: "IT Strategy & DX", href: "/services#it-strategy"},
{
label: "SAP Support",
href: "/services#sap-support",
},
label: "SAP Support", href: "/services#sap-support"},
{
label: "PMO & Program Mgmt",
href: "/services#pmo-support",
},
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
],
},
{
items: [
{
label: "IT Due Diligence",
href: "/services#it-due-diligence",
},
label: "IT Due Diligence", href: "/services#it-due-diligence"},
{
label: "Talent Development",
href: "/services#talent-development",
},
label: "Talent Development", href: "/services#talent-development"},
{
label: "BPR",
href: "/services#bpr",
},
label: "BPR", href: "/services#bpr"},
],
},
{
items: [
{
label: "Cases",
href: "/cases",
},
label: "Cases", href: "/cases"},
{
label: "Insights",
href: "/insights",
},
label: "Insights", href: "/insights"},
{
label: "Contact Us",
href: "/contact",
},
label: "Contact Us", href: "/contact"},
],
},
{
items: [
{
label: "Privacy Policy",
href: "#privacy",
},
label: "Privacy Policy", href: "#privacy"},
{
label: "Terms of Service",
href: "#terms",
},
label: "Terms of Service", href: "#terms"},
{
label: "© 2026 K&K Solution Inc.",
href: "#",
},
label: "© 2026 K&K Solution Inc.", href: "#"},
],
},
]}
@@ -224,4 +153,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}