Compare commits
56 Commits
version_6
...
version_19
| Author | SHA1 | Date | |
|---|---|---|---|
| ef5c9961d4 | |||
| 6d2845af6a | |||
| 150e4c9ebe | |||
| a1ecd36f64 | |||
| 21fa059acc | |||
| eed9bc34dd | |||
| ad5b985467 | |||
| fbc507d175 | |||
| 349b5d14cb | |||
| a27064ab78 | |||
| f8eb608af1 | |||
| 1401295b94 | |||
| 2565772891 | |||
| 0a67d8e2e8 | |||
| e20e3d8973 | |||
| bbdaf9c0b3 | |||
| a97392cbd6 | |||
| 53103ffa81 | |||
| bc45ae7adb | |||
| 7f257c4e46 | |||
| 96479be3aa | |||
| 0f610b66da | |||
| f273541b5d | |||
| 2efea6cd0d | |||
| fc94e540f6 | |||
| 0eaaf515e9 | |||
| 3f2f1f27ca | |||
| 27c44168cd | |||
| f6393271bb | |||
| 1386c52c4b | |||
| 6421f858b1 | |||
| 88103105c1 | |||
| bfa4496f84 | |||
| c11461648e | |||
| e7ec3814c8 | |||
| 3c3ed4000f | |||
| 72c5cf264b | |||
| bfc54a23e7 | |||
| 54a6dc7872 | |||
| a92536038f | |||
| 6017613655 | |||
| b023e84895 | |||
| 21b3351453 | |||
| 26505a4313 | |||
| f25aff5026 | |||
| 17df505395 | |||
| 37dc9e98fa | |||
| 59d73bbcfd | |||
| ba59b2d20d | |||
| b40de4ffc9 | |||
| 6981855ba9 | |||
| b62419f39e | |||
| c112de0cf4 | |||
| 5e824954fa | |||
| b046fa41ab | |||
| e67741dc0c |
@@ -4,10 +4,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const consistentFooterColumns = [
|
||||||
|
{
|
||||||
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Company", href: "/company" },
|
||||||
|
{ label: "Insights", href: "/insights" },
|
||||||
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -25,24 +55,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Approach", id: "/approach"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Cases", id: "/cases"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -94,60 +107,10 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "/company"},
|
|
||||||
{
|
|
||||||
label: "Our Approach", href: "/approach"},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "/careers"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
|
||||||
{
|
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Cases", href: "/cases"},
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="K&K Solution Inc."
|
logoText="K&K Solution Inc."
|
||||||
|
columns={consistentFooterColumns}
|
||||||
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -4,10 +4,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const consistentFooterColumns = [
|
||||||
|
{
|
||||||
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Company", href: "/company" },
|
||||||
|
{ label: "Insights", href: "/insights" },
|
||||||
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -25,20 +55,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -87,56 +104,10 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "/company"},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "/careers"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
|
||||||
{
|
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="K&K Solution Inc."
|
logoText="K&K Solution Inc."
|
||||||
|
columns={consistentFooterColumns}
|
||||||
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -3,10 +3,40 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const consistentFooterColumns = [
|
||||||
|
{
|
||||||
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Company", href: "/company" },
|
||||||
|
{ label: "Insights", href: "/insights" },
|
||||||
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -24,24 +54,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Approach", id: "/approach"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Cases", id: "/cases"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"}
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -91,60 +104,10 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "/company"},
|
|
||||||
{
|
|
||||||
label: "Our Approach", href: "/approach"},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "/careers"}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
|
||||||
{
|
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Cases", href: "/cases"},
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
logoText="K&K Solution Inc."
|
logoText="K&K Solution Inc."
|
||||||
|
columns={consistentFooterColumns}
|
||||||
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -3,11 +3,41 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const consistentFooterColumns = [
|
||||||
|
{
|
||||||
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Company", href: "/company" },
|
||||||
|
{ label: "Insights", href: "/insights" },
|
||||||
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -25,20 +55,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -97,56 +114,10 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About Us", href: "/company"},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "/careers"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
|
||||||
{
|
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="K&K Solution Inc."
|
logoText="K&K Solution Inc."
|
||||||
|
columns={consistentFooterColumns}
|
||||||
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -3,10 +3,40 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const consistentFooterColumns = [
|
||||||
|
{
|
||||||
|
title: "Navigation", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Services", href: "/services" },
|
||||||
|
{ label: "Company", href: "/company" },
|
||||||
|
{ label: "Insights", href: "/insights" },
|
||||||
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -24,20 +54,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,58 +83,10 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
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: "Careers", href: "/careers"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
|
||||||
{
|
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="K&K Solution Inc."
|
logoText="K&K Solution Inc."
|
||||||
|
columns={consistentFooterColumns}
|
||||||
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -4,9 +4,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
|
||||||
|
const consistentNavItems = [
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Approach", id: "/approach" },
|
||||||
|
{ name: "Company", id: "/company" },
|
||||||
|
{ name: "Cases", id: "/cases" },
|
||||||
|
{ name: "Insights", id: "/insights" },
|
||||||
|
{ name: "Careers", id: "/careers" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
];
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -24,20 +35,7 @@ export default function LandingPage() {
|
|||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={consistentNavItems}
|
||||||
{
|
|
||||||
name: "Home", id: "/"},
|
|
||||||
{
|
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Company", id: "/company"},
|
|
||||||
{
|
|
||||||
name: "Insights", id: "/insights"},
|
|
||||||
{
|
|
||||||
name: "Careers", id: "/careers"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
|
||||||
brandName="K&K Solution Inc."
|
brandName="K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -74,58 +72,27 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterBaseReveal
|
||||||
logoSrc="http://img.b2bpic.net/free-vector/letter-k-luxury-brand-logo-concept-design-vector_1055-13164.jpg"
|
logoText="K&K Solution Inc."
|
||||||
logoAlt="K&K Solution Inc. Logo"
|
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
items: [
|
title: "Navigation", items: [
|
||||||
{
|
{ label: "Home", href: "/" },
|
||||||
label: "About Us", href: "/company"},
|
{ label: "Services", href: "/services" },
|
||||||
{
|
{ label: "Company", href: "/company" },
|
||||||
label: "Careers", href: "/careers"},
|
{ label: "Insights", href: "/insights" },
|
||||||
],
|
{ label: "Careers", href: "/careers" },
|
||||||
|
{ label: "Contact", href: "/contact" }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
title: "Legal", items: [
|
||||||
{
|
{ label: "Privacy Policy", href: "#privacy" },
|
||||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
{ label: "Terms of Service", href: "#terms" }
|
||||||
{
|
]
|
||||||
label: "SAP Support", href: "/services#sap-support"},
|
}
|
||||||
{
|
|
||||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
|
||||||
{
|
|
||||||
label: "Talent Development", href: "/services#talent-development"},
|
|
||||||
{
|
|
||||||
label: "BPR", href: "/services#bpr"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Insights", href: "/insights"},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "/contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#privacy"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#terms"},
|
|
||||||
{
|
|
||||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="K&K Solution Inc."
|
copyrightText="© 2026 K&K Solution Inc."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
310
src/app/page.tsx
310
src/app/page.tsx
@@ -2,186 +2,158 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
|
||||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||||
import { Briefcase, Building, Database, Diamond, Loader, ShieldCheck, Sparkles, Users } from "lucide-react";
|
import { Briefcase, Building, Users } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="shift-hover"
|
defaultButtonVariant="shift-hover"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumLarge"
|
contentWidth="mediumLarge"
|
||||||
sizing="mediumSizeLargeTitles"
|
sizing="mediumSizeLargeTitles"
|
||||||
background="aurora"
|
background="aurora"
|
||||||
cardStyle="layered-gradient"
|
cardStyle="layered-gradient"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="primary-glow"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", id: "/"},
|
name: "Home", id: "/"
|
||||||
{
|
},
|
||||||
name: "Services", id: "/services"},
|
{
|
||||||
{
|
name: "Services", id: "/services"
|
||||||
name: "Company", id: "/company"},
|
},
|
||||||
{
|
{
|
||||||
name: "Insights", id: "/insights"},
|
name: "Company", id: "/company"
|
||||||
{
|
},
|
||||||
name: "Careers", id: "/careers"},
|
{
|
||||||
{
|
name: "Insights", id: "/insights"
|
||||||
name: "Contact", id: "/contact"},
|
},
|
||||||
]}
|
{
|
||||||
brandName="K&K Solution Inc."
|
name: "Careers", id: "/careers"
|
||||||
/>
|
},
|
||||||
</div>
|
{
|
||||||
|
name: "Contact", id: "/contact"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
brandName="K&K Solution Inc."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitTestimonial
|
<HeroSplitTestimonial
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient"}}
|
variant: "radial-gradient"
|
||||||
imagePosition="right"
|
}}
|
||||||
title="Strategy with the depth Japan deserves."
|
imagePosition="right"
|
||||||
description="コンサルティングを、もう一段深く.\nDelivering BCG/McKinsey-grade IT strategy to Japan's mid-cap enterprises."
|
title="変革の先陣を切る"
|
||||||
testimonials={[
|
description="コンサルティングを、もう一段深く. Delivering BCG/McKinsey-grade IT strategy to Japan's mid-cap enterprises."
|
||||||
{
|
buttons={[]}
|
||||||
name: "Akira Suzuki", handle: "@Akira_S", testimonial: "K&K transformed our IT strategy, delivering beyond expectations. Truly world-class.", rating: 5,
|
mediaAnimation="slide-up"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-posing-black-white_23-2149411408.jpg", imageAlt: "Akira Suzuki profile"},
|
fixedMediaHeight={true}
|
||||||
{
|
testimonials={[
|
||||||
name: "Emi Nakamura", handle: "@Emi_Naka", testimonial: "Their SAP expertise is unparalleled. Smooth migration and excellent support.", rating: 5,
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/worldface-spanish-man-white-background_53876-139733.jpg", imageAlt: "Emi Nakamura profile"},
|
name: "Taro Yamada", handle: "@TaroYamada", testimonial: "K&K Solution transformed our IT infrastructure, significantly boosting our efficiency and reducing operational costs. Their strategic insights were invaluable.", rating: 5,
|
||||||
{
|
imageSrc: "/images/placeholder-avatar.jpg", imageAlt: "Taro Yamada avatar"
|
||||||
name: "Takeshi Tanaka", handle: "@T_Tanaka", testimonial: "The PMO support was critical for our complex project. Highly recommend K&K.", rating: 5,
|
},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/classic-portrait-silhouette-man_23-2149706998.jpg", imageAlt: "Takeshi Tanaka profile"},
|
{
|
||||||
{
|
name: "Hanako Tanaka", handle: "@HanakoTanaka", testimonial: "The team at K&K provided expert guidance on our digital transformation journey. Their approach was thorough, and the results exceeded our expectations.", rating: 5,
|
||||||
name: "Reina Kobayashi", handle: "@ReinaK", testimonial: "K&K's insight into Japanese market nuances combined with global best practices is invaluable.", rating: 5,
|
imageSrc: "/images/placeholder-avatar.jpg", imageAlt: "Hanako Tanaka avatar"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/artistic-businessman_23-2147641280.jpg", imageAlt: "Reina Kobayashi profile"},
|
}
|
||||||
{
|
]}
|
||||||
name: "Daiki Hashimoto", handle: "@HashimotoD", testimonial: "Strategic depth and practical execution – K&K delivers tangible results.", rating: 5,
|
/>
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/business-avatar-template_23-2147502917.jpg", imageAlt: "Daiki Hashimoto profile"},
|
</div>
|
||||||
]}
|
|
||||||
buttons={[
|
|
||||||
{
|
|
||||||
text: "Contact Us", href: "/contact"},
|
|
||||||
]}
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=psnj5l&_wi=1"
|
|
||||||
imageAlt="K&K Solution Inc. Gold Logo"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
fixedMediaHeight={true}
|
|
||||||
avatars={[
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-vector/businessman-silhouettes-avatars_23-2147495067.jpg", alt: "Client Avatar 1"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-vector/linear-flat-people-faces-professions-illustration_1416-516.jpg", alt: "Client Avatar 2"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-vector/illustration-business-people_53876-5890.jpg", alt: "Client Avatar 3"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/office-sunset_1098-350.jpg", alt: "Client Avatar 4"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/silhouettes-modern-office_1098-669.jpg", alt: "Client Avatar 5"},
|
|
||||||
]}
|
|
||||||
avatarText="Trusted by 250+ leading enterprises."
|
|
||||||
marqueeItems={[
|
|
||||||
{
|
|
||||||
type: "text-icon", text: "IT Strategy", icon: Diamond,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text-icon", text: "Digital Transformation", icon: Sparkles,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text-icon", text: "SAP S/4HANA", icon: Database,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text-icon", text: "PMO Services", icon: ShieldCheck,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "text-icon", text: "Business Process Re-engineering", icon: Loader,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="home-services-preview" data-section="home-services-preview">
|
<div id="home-services-preview" data-section="home-services-preview">
|
||||||
<FeatureCardTwentyThree
|
<FeatureCardTwentyThree
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "it-strategy", title: "IT Strategy & DX", tags: [
|
id: "it-strategy", title: "IT Strategy & DX", tags: [
|
||||||
"Consulting", "Digital Transformation"],
|
"Consulting", "Digital Transformation"
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-minimal-business-card-design_23-2149298186.jpg", imageAlt: "IT Strategy & DX icon"},
|
]
|
||||||
{
|
},
|
||||||
id: "sap-support", title: "SAP Implementation & Operation", tags: [
|
{
|
||||||
"ERP", "S/4HANA"],
|
id: "sap-support", title: "SAP Implementation & Operation", tags: [
|
||||||
imageSrc: "http://img.b2bpic.net/free-vector/triangle-green-gradient-luxury-background_343694-4684.jpg", imageAlt: "SAP Support icon"},
|
"ERP", "S/4HANA"
|
||||||
{
|
]
|
||||||
id: "pmo-support", title: "PMO & Program Management", tags: [
|
},
|
||||||
"Project Management", "Governance"],
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/feminine-circle-frame_53876-90184.jpg", imageAlt: "PMO Support icon"},
|
id: "pmo-support", title: "PMO & Program Management", tags: [
|
||||||
]}
|
"Project Management", "Governance"
|
||||||
title="Our Core Services"
|
]
|
||||||
description="Driving innovation and efficiency across your enterprise."
|
}
|
||||||
/>
|
]}
|
||||||
</div>
|
title="Our Core Services"
|
||||||
|
description="Driving innovation and efficiency across your enterprise."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="home-stats" data-section="home-stats">
|
<div id="home-stats" data-section="home-stats">
|
||||||
<MetricCardOne
|
<MetricCardOne
|
||||||
animationType="depth-3d"
|
animationType="depth-3d"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "clients", value: "250+", title: "Satisfied Clients", description: "Across diverse industries.", icon: Users,
|
id: "clients", value: "250+", title: "Satisfied Clients", description: "Across diverse industries.", icon: Users
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "projects", value: "700+", title: "Successful Projects", description: "Delivered on time and budget.", icon: Briefcase,
|
id: "projects", value: "700+", title: "Successful Projects", description: "Delivered on time and budget.", icon: Briefcase
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "industries", value: "15+", title: "Industries Served", description: "Deep sector expertise.", icon: Building,
|
id: "industries", value: "15+", title: "Industries Served", description: "Deep sector expertise.", icon: Building
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
title="Impactful Results"
|
title="Impactful Results"
|
||||||
description="Quantifying our commitment to your success."
|
description="Quantifying our commitment to your success."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="home-message" data-section="home-message">
|
<div id="home-message" data-section="home-message">
|
||||||
<TextSplitAbout
|
<TextSplitAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="A Message from Our Founder"
|
title="A Message from Our Founder"
|
||||||
description={[
|
description={[
|
||||||
"At K&K Solution Inc., we believe in delivering consulting services that truly transform businesses. Our team comprises veterans from leading global consulting firms, bringing a wealth of strategic insight and practical experience.", "We are dedicated to empowering Japan's mid-cap enterprises with world-class IT strategy and digital transformation capabilities, ensuring they thrive in an evolving global landscape. Your success is our mission."]}
|
"At K&K Solution Inc., we believe in delivering consulting services that truly transform businesses. Our team comprises veterans from leading global consulting firms, bringing a wealth of strategic insight and practical experience.", "We are dedicated to empowering Japan's mid-cap enterprises with world-class IT strategy and digital transformation capabilities, ensuring they thrive in an evolving global landscape. Your success is our mission."
|
||||||
buttons={[
|
]}
|
||||||
{
|
buttons={[
|
||||||
text: "Read Full Message", href: "/company#founder-message"},
|
{
|
||||||
]}
|
text: "Read Full Message", href: "/company#founder-message"
|
||||||
/>
|
}
|
||||||
</div>
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="home-cta" data-section="home-cta">
|
<div id="home-cta" data-section="home-cta">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain"}}
|
variant: "plain"
|
||||||
text="Ready to deepen your strategy? Connect with us today."
|
}}
|
||||||
buttons={[
|
text="Ready to deepen your strategy? Connect with us today."
|
||||||
{
|
buttons={[
|
||||||
text: "Contact Us Now", href: "/contact"},
|
{
|
||||||
]}
|
text: "Contact Us Now", href: "/contact"
|
||||||
/>
|
}
|
||||||
</div>
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user