Switch to version 2: remove src/app/careers/page.tsx
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<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>
|
||||
<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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user