Compare commits
6 Commits
version_10
...
version_11
| Author | SHA1 | Date | |
|---|---|---|---|
| e7ec3814c8 | |||
| 3c3ed4000f | |||
| 72c5cf264b | |||
| bfc54a23e7 | |||
| 54a6dc7872 | |||
| a92536038f |
@@ -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: "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" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
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"
|
||||||
|
|||||||
@@ -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: "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" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
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"
|
||||||
|
|||||||
@@ -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: "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" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
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"
|
||||||
|
|||||||
@@ -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: "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" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
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"
|
||||||
|
|||||||
@@ -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: "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" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
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"
|
||||||
|
|||||||
Reference in New Issue
Block a user