Add src/app/careers/page.tsx

This commit is contained in:
2026-04-15 11:30:45 +00:00
parent c4e7ace9c6
commit eb3a7ac5e9

45
src/app/careers/page.tsx Normal file
View File

@@ -0,0 +1,45 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FooterBase from "@/components/sections/footer/FooterBase";
export default function CareersPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Epicure Buffet"
navItems={[
{ name: "Menu", id: "/ #menu" },
{ name: "Pricing", id: "/ #pricing" },
{ name: "Our Story", id: "/our-story" },
{ name: "Careers", id: "/careers" },
{ name: "Contact Us", id: "/contact-us" },
]}
button={{ text: "Book Now", href: "/ #contact" }}
/>
<div className="pt-32 pb-20 px-6 max-w-4xl mx-auto min-h-screen">
<h1 className="text-5xl font-bold mb-8">Careers</h1>
<p className="text-lg mb-6">Join our team of passionate culinary enthusiasts. We're always looking for talented individuals who value fresh, quality ingredients and exceptional customer service.</p>
<h2 className="text-2xl font-semibold mt-10 mb-4">Open Positions</h2>
<ul className="list-disc pl-6 space-y-2">
<li>Line Cook</li>
<li>Front of House Manager</li>
<li>Server Assistant</li>
</ul>
</div>
<FooterBase
logoText="Epicure Buffet"
copyrightText="© 2026 | Epicure Buffet"
columns={[
{ title: "Dining", items: [{ label: "Lunch Menu", href: "/ #menu" }, { label: "Dinner Menu", href: "/ #menu" }] },
{ title: "Company", items: [{ label: "Our Story", href: "/our-story" }, { label: "Careers", href: "/careers" }] },
{ title: "Support", items: [{ label: "Reservations", href: "/ #contact" }, { label: "Contact Us", href: "/contact-us" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}