Add src/app/kemitraan/page.tsx

This commit is contained in:
2026-06-03 15:39:23 +00:00
parent 9114f20f12
commit 335d096e27

View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Handshake } from 'lucide-react'; // Added for partnership icon
export default function KemitraanPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="small"
sizing="large"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Kanemura"
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EdElDXzT9PJ2yx2yCX1t9p2kOh/uploaded-1780501067629-q2gpft6l.png"
navItems={[
{ name: "Beranda", href: "/" },
{ name: "Menu", href: "/#cuts" },
{ name: "Store List", href: "/store-list" },
{ name: "Kemitraan", href: "/kemitraan" },
{ name: "Contact", href: "/#contact" }
]}
button={{
text: "Reserve Table", href: "/#contact"
}}
/>
</div>
<div id="kemitraan" data-section="kemitraan">
<ContactCenter
tag="Partnerships"
title="Partner with Kanemura"
description="Explore partnership opportunities and grow with us."
tagIcon={Handshake}
background={{ variant: "sparkles-gradient" }}
inputPlaceholder="Your business email"
buttonText="Inquire Now"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Kanemura"
copyrightText="© 2024 Kanemura Premium Steakhouse. All rights reserved."
columns={[
{
title: "Dining", items: [
{ label: "Menu", href: "/#cuts" },
{ label: "Reservations", href: "/#contact" },
{ label: "Private Events", href: "/#contact" }
]
},
{
title: "Experience", items: [
{ label: "About Us", href: "/#about" },
{ label: "Our Story", href: "/#about" },
{ label: "Team", href: "/#team" },
{ label: "Testimonials", href: "/#testimonials" }
]
},
{
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "#" },
{ label: "Email: reserve@kanemura.com", href: "#" },
{ label: "Hours: 5PM - 11PM", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider>
);
}