Add src/app/services/page.tsx

This commit is contained in:
2026-04-05 12:27:16 +00:00
parent 1c78a1b553
commit dfdfdfc46e

28
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,28 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
export default function ServicesPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Menu", id: "/menu" }, { name: "Gallery", id: "/gallery" }, { name: "Contact", id: "/contact" }]}
brandName="Private Chef Co"
/>
<div className="pt-32">
<FeatureCardSix
title="Our Chef Offerings"
description="We provide a variety of specialized culinary services tailored to your needs."
textboxLayout="default"
features={[
{ title: "Private Dinner Parties", description: "Intimate dining experiences for family and friends.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-meat-plate-with-herbs-vegetables_141793-4080.jpg" },
{ title: "Menu Planning", description: "Custom menus tailored to dietary preferences and allergies.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-s-hand-writing-clipboard-with-traditional-thai-food-wooden-table_23-2148093545.jpg" },
{ title: "Cooking Classes", description: "Learn culinary secrets from the comfort of your kitchen.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-cream-pie-sweet-cake-slices-inside-designed-plate-dark-background-cake-pie-color-sweet-biscuit-cream_140725-96332.jpg" }
]}
/>
</div>
</ThemeProvider>
);
}