13 Commits

Author SHA1 Message Date
e7ec3814c8 Update src/app/contact/page.tsx 2026-06-07 13:38:55 +00:00
3c3ed4000f Update src/app/company/page.tsx 2026-06-07 13:38:54 +00:00
72c5cf264b Update src/app/cases/page.tsx 2026-06-07 13:38:54 +00:00
bfc54a23e7 Update src/app/careers/page.tsx 2026-06-07 13:38:54 +00:00
54a6dc7872 Update src/app/approach/page.tsx 2026-06-07 13:38:53 +00:00
a92536038f Merge version_10 into main
Merge version_10 into main
2026-06-07 13:34:16 +00:00
6017613655 Update src/app/insights/page.tsx 2026-06-07 13:34:13 +00:00
b023e84895 Update src/app/contact/page.tsx 2026-06-07 13:34:13 +00:00
21b3351453 Update src/app/company/page.tsx 2026-06-07 13:34:12 +00:00
26505a4313 Update src/app/cases/page.tsx 2026-06-07 13:34:12 +00:00
f25aff5026 Update src/app/careers/page.tsx 2026-06-07 13:34:12 +00:00
17df505395 Update src/app/approach/page.tsx 2026-06-07 13:34:11 +00:00
37dc9e98fa Merge version_9 into main
Merge version_9 into main
2026-06-07 13:29:35 +00:00
6 changed files with 184 additions and 216 deletions

View File

@@ -8,6 +8,36 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
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>
@@ -96,24 +109,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="K&K Solution Inc." logoText="K&K Solution Inc."
columns={[ columns={consistentFooterColumns}
{
title: "Pages", 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" },
],
},
]}
copyrightText="© 2026 K&K Solution Inc." copyrightText="© 2026 K&K Solution Inc."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8" className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold" logoTextClassName="text-[#FAF4E6] text-xl font-bold"

View File

@@ -8,6 +8,36 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
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>
@@ -89,24 +106,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="K&K Solution Inc." logoText="K&K Solution Inc."
columns={[ columns={consistentFooterColumns}
{
title: "Pages", 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" },
],
},
]}
copyrightText="© 2026 K&K Solution Inc." copyrightText="© 2026 K&K Solution Inc."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8" className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold" logoTextClassName="text-[#FAF4E6] text-xl font-bold"

View File

@@ -7,6 +7,36 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
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>
@@ -93,24 +106,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="K&K Solution Inc." logoText="K&K Solution Inc."
columns={[ columns={consistentFooterColumns}
{
title: "Pages", 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" },
],
},
]}
copyrightText="© 2026 K&K Solution Inc." copyrightText="© 2026 K&K Solution Inc."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8" className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold" logoTextClassName="text-[#FAF4E6] text-xl font-bold"

View File

@@ -8,6 +8,36 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
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>
@@ -99,24 +116,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="K&K Solution Inc." logoText="K&K Solution Inc."
columns={[ columns={consistentFooterColumns}
{
title: "Pages", 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" },
],
},
]}
copyrightText="© 2026 K&K Solution Inc." copyrightText="© 2026 K&K Solution Inc."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8" className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold" logoTextClassName="text-[#FAF4E6] text-xl font-bold"

View File

@@ -7,6 +7,36 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
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>
@@ -68,24 +85,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBaseCard
logoText="K&K Solution Inc." logoText="K&K Solution Inc."
columns={[ columns={consistentFooterColumns}
{
title: "Pages", 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" },
],
},
]}
copyrightText="© 2026 K&K Solution Inc." copyrightText="© 2026 K&K Solution Inc."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8" className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold" logoTextClassName="text-[#FAF4E6] text-xl font-bold"

View File

@@ -4,7 +4,7 @@ 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 FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() { export default function LandingPage() {
@@ -74,58 +74,34 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterBaseCard
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."
className="bg-[#6B0F1A] border-t border-[#C9A961] py-8"
logoTextClassName="text-[#FAF4E6] text-xl font-bold"
columnTitleClassName="text-[#C9A961] font-semibold mb-4"
columnItemClassName="text-[#C9A961] hover:text-[#FAF4E6] text-base mb-2"
copyrightTextClassName="text-[#D8C896] text-sm mt-8"
containerClassName="max-w-screen-xl mx-auto px-4"
columnsClassName="grid grid-cols-2 md:grid-cols-2 gap-8 lg:gap-12"
/> />
</div> </div>
</ReactLenis> </ReactLenis>