Compare commits
13 Commits
version_10
...
version_12
| Author | SHA1 | Date | |
|---|---|---|---|
| 27c44168cd | |||
| f6393271bb | |||
| 1386c52c4b | |||
| 6421f858b1 | |||
| 88103105c1 | |||
| bfa4496f84 | |||
| c11461648e | |||
| e7ec3814c8 | |||
| 3c3ed4000f | |||
| 72c5cf264b | |||
| bfc54a23e7 | |||
| 54a6dc7872 | |||
| a92536038f |
@@ -4,10 +4,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -25,24 +55,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
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"},
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -94,34 +107,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
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" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -4,10 +4,40 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -25,20 +55,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Company", id: "/company"},
|
||||
{
|
||||
name: "Insights", id: "/insights"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -87,34 +104,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
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" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -3,10 +3,40 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -24,24 +54,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
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"}
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -91,34 +104,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
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" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -3,11 +3,41 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -25,20 +55,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Company", id: "/company"},
|
||||
{
|
||||
name: "Insights", id: "/insights"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -97,34 +114,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
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" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -3,10 +3,40 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -24,20 +54,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Company", id: "/company"},
|
||||
{
|
||||
name: "Insights", id: "/insights"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -66,34 +83,10 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
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" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
columns={consistentFooterColumns}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -4,9 +4,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -24,20 +35,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Company", id: "/company"},
|
||||
{
|
||||
name: "Insights", id: "/insights"},
|
||||
{
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
</div>
|
||||
@@ -74,7 +72,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
<FooterBaseReveal
|
||||
logoText="K&K Solution Inc."
|
||||
columns={[
|
||||
{
|
||||
@@ -95,13 +93,6 @@ export default function LandingPage() {
|
||||
}
|
||||
]}
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user