28 lines
1.7 KiB
TypeScript
28 lines
1.7 KiB
TypeScript
"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>
|
|
);
|
|
} |