diff --git a/src/app/chefs-story/page.tsx b/src/app/chefs-story/page.tsx new file mode 100644 index 0000000..5245092 --- /dev/null +++ b/src/app/chefs-story/page.tsx @@ -0,0 +1,174 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Award, Flame, Leaf, Star, UtensilsCrossed, Clock } from 'lucide-react'; + +export default function ChefsStoryPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file