Update src/app/contact/page.tsx
This commit is contained in:
@@ -26,37 +26,21 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Approach",
|
||||
id: "/approach",
|
||||
},
|
||||
name: "Approach", id: "/approach"},
|
||||
{
|
||||
name: "Company",
|
||||
id: "/company",
|
||||
},
|
||||
name: "Company", id: "/company"},
|
||||
{
|
||||
name: "Cases",
|
||||
id: "/cases",
|
||||
},
|
||||
name: "Cases", id: "/cases"},
|
||||
{
|
||||
name: "Insights",
|
||||
id: "/insights",
|
||||
},
|
||||
name: "Insights", id: "/insights"},
|
||||
{
|
||||
name: "Careers",
|
||||
id: "/careers",
|
||||
},
|
||||
name: "Careers", id: "/careers"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="K&K Solution Inc."
|
||||
/>
|
||||
@@ -66,14 +50,12 @@ export default function LandingPage() {
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
text="We'd love to hear from you. Please fill out the form below."
|
||||
buttons={[
|
||||
{
|
||||
text: "Send Message (Console Log)",
|
||||
onClick: "console.log('Form submitted!')",
|
||||
},
|
||||
text: "Send Message (Console Log)", onClick: () => console.log('Form submitted!')
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,12 +65,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Our Office & Contact Details"
|
||||
description={[
|
||||
"K&K Solution Inc.",
|
||||
"**Address:** 1-1-1 Marunouchi, Chiyoda-ku, Tokyo, Japan",
|
||||
"**Phone:** +81 (0)3-1234-5678",
|
||||
"**Email:** info@kksolution.inc",
|
||||
"**Business Hours:** Monday - Friday, 9:00 AM - 6:00 PM JST",
|
||||
]}
|
||||
"K&K Solution Inc.", "**Address:** 1-1-1 Marunouchi, Chiyoda-ku, Tokyo, Japan", "**Phone:** +81 (0)3-1234-5678", "**Email:** info@kksolution.inc", "**Business Hours:** Monday - Friday, 9:00 AM - 6:00 PM JST"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -100,81 +77,51 @@ export default function LandingPage() {
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/company",
|
||||
},
|
||||
label: "About Us", href: "/company"},
|
||||
{
|
||||
label: "Our Approach",
|
||||
href: "/approach",
|
||||
},
|
||||
label: "Our Approach", href: "/approach"},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "/careers",
|
||||
},
|
||||
label: "Careers", href: "/careers"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "IT Strategy & DX",
|
||||
href: "/services#it-strategy",
|
||||
},
|
||||
label: "IT Strategy & DX", href: "/services#it-strategy"},
|
||||
{
|
||||
label: "SAP Support",
|
||||
href: "/services#sap-support",
|
||||
},
|
||||
label: "SAP Support", href: "/services#sap-support"},
|
||||
{
|
||||
label: "PMO & Program Mgmt",
|
||||
href: "/services#pmo-support",
|
||||
},
|
||||
label: "PMO & Program Mgmt", href: "/services#pmo-support"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "IT Due Diligence",
|
||||
href: "/services#it-due-diligence",
|
||||
},
|
||||
label: "IT Due Diligence", href: "/services#it-due-diligence"},
|
||||
{
|
||||
label: "Talent Development",
|
||||
href: "/services#talent-development",
|
||||
},
|
||||
label: "Talent Development", href: "/services#talent-development"},
|
||||
{
|
||||
label: "BPR",
|
||||
href: "/services#bpr",
|
||||
},
|
||||
label: "BPR", href: "/services#bpr"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Cases",
|
||||
href: "/cases",
|
||||
},
|
||||
label: "Cases", href: "/cases"},
|
||||
{
|
||||
label: "Insights",
|
||||
href: "/insights",
|
||||
},
|
||||
label: "Insights", href: "/insights"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact Us", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#privacy",
|
||||
},
|
||||
label: "Privacy Policy", href: "#privacy"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#terms",
|
||||
},
|
||||
label: "Terms of Service", href: "#terms"},
|
||||
{
|
||||
label: "© 2026 K&K Solution Inc.",
|
||||
href: "#",
|
||||
},
|
||||
label: "© 2026 K&K Solution Inc.", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user