Merge version_9_1777499917741 into main #8

Merged
bender merged 2 commits from version_9_1777499917741 into main 2026-04-29 21:59:25 +00:00
4 changed files with 37 additions and 1 deletions

View File

@@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom';
import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ServicesPage from "@/pages/ServicesPage";
export default function App() {
return (
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<HomePage />} />
<Route path="/services" element={<ServicesPage />} />
</Route>
</Routes>
);

View File

@@ -33,7 +33,9 @@ export default function Layout() {
{
"name": "Testimonials",
"href": "#testimonials"
}
},
{ name: "Services", href: "/services" },
];
return (

View File

@@ -0,0 +1,31 @@
import HeroSplit from "@/components/sections/hero/HeroSplit";
import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
import ContactCta from "@/components/sections/contact/ContactCta";
export default function ServicesPage() {
return (
<>
<HeroSplit
tag="Our Culinary Experiences"
title="Bring the Art of Italy to Your Next Event"
description="DMYTRO extends beyond our restaurant walls, offering bespoke Italian culinary services designed to elevate your special occasions. From intimate private dinners and vibrant cooking classes to grand catering events, we bring the authentic flavors and artisanal spirit of Italy directly to you. Discover how we can craft an unforgettable experience, tailored with our handcrafted pasta, wood-fired pizzas, and the finest seasonal ingredients."
primaryButton={{"text":"Explore Catering & Events","href":"/services#catering"}}
secondaryButton={{"text":"Discover Cooking Classes","href":"/services#classes"}}
imageSrc="https://img.freepik.com/free-photo/chef-preparing-delicious-italian-food-kitchen_23-2149727788.jpg"
/>
<FeaturesAlternatingSplit
tag="Our Bespoke Services"
title="Experience the Art of Italy, Tailored for You"
description="DMYTRO extends beyond our restaurant walls, offering exclusive culinary experiences designed to bring the authentic taste and artisanal spirit of Italy directly to your special moments. From intimate private dinners to immersive cooking classes and grand catered events, we craft unforgettable memories with passion and precision."
primaryButton={{"text":"Inquire About Services","href":"/contact"}}
items={[{"title":"Intimate Private Dining & Special Events","description":"Elevate your celebrations with DMYTRO's personalized touch. Our chefs will craft bespoke menus, from multi-course tasting experiences to family-style feasts, served in the comfort of your home or chosen venue, ensuring an unforgettable Italian culinary journey.","imageSrc":"http://img.b2bpic.net/free-photo/top-view-wooden-table-with-variety-pasta_1220-467.jpg","primaryButton":{"text":"Plan Your Event","href":"/contact#private-dining"}},{"title":"Master the Art of Italian Cuisine","description":"Immerse yourself in the traditions of Italian cooking with DMYTRO's hands-on classes. Learn the secrets of handcrafted pasta, perfect wood-fired pizza dough, and classic sauces from our expert chefs, bringing the heart of Italy to your kitchen.","imageSrc":"https://img.freepik.com/free-photo/chef-teaching-cooking-class_23-2149303358.jpg","primaryButton":{"text":"View Class Schedule","href":"/contact#cooking-classes"}},{"title":"DMYTRO Catering: Italian Excellence for Any Occasion","description":"Bring the authentic flavors of DMYTRO to your next gathering. Whether it's a corporate lunch, a family celebration, or a grand wedding, our full-service catering team delivers exquisite Italian dishes, impeccable presentation, and seamless service.","imageSrc":"http://img.b2bpic.net/free-photo/top-view-wooden-table-with-variety-pasta_1220-467.jpg","primaryButton":{"text":"Request a Catering Quote","href":"/contact#catering"}}]}
/>
<ContactCta
tag="Your Culinary Journey Starts Here"
text="From bespoke catering for your special events to private pasta-making classes and immersive culinary workshops, DMYTRO brings the authentic taste of Italy directly to you. Connect with us to design an unforgettable experience tailored to your desires."
primaryButton={{"text":"Plan Your Event","href":"/contact#plan-event"}}
secondaryButton={{"text":"Discover Our Offerings","href":"/services#offerings"}}
/>
</>
);
}

View File

@@ -6,4 +6,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/services', label: 'Services', pageFile: 'ServicesPage' },
];