import React, { useState, useEffect } from 'react'; import { Menu, X, Leaf, Sprout, Wheat, Utensils, MapPin, Phone, Mail, Star, Instagram, Facebook, Twitter, ChefHat, ArrowRight } from 'lucide-react'; const RootAndGrain = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [scrolled, setScrolled] = useState(false); // Handle scroll for navbar styling useEffect(() => { const handleScroll = () => { setScrolled(window.scrollY > 50); }; window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); const toggleMenu = () => setIsMenuOpen(!isMenuOpen); const navLinks = [ { name: 'Philosophy', href: '#philosophy' }, { name: 'Menu', href: '#menu' }, { name: 'Sourcing', href: '#sourcing' }, { name: 'Gallery', href: '#gallery' }, { name: 'Reviews', href: '#reviews' }, { name: 'Contact', href: '#contact' }, ]; return (
Experience the vibrant flavors of seasonal, locally-sourced ingredients crafted into culinary masterpieces that nourish both body and soul.
"Respect the ingredient, respect the earth."
At Root & Grain, we believe that food should be a celebration of life. Our kitchen is completely meat-free, focusing instead on the endless possibilities of vegetables, grains, legumes, and fruits.
We work directly with local farmers to reduce our carbon footprint and ensure that every dish on your plate is at the peak of its freshness and nutritional value.
We compost 100% of our organic waste and avoid single-use plastics.
Supporting local growers and hosting educational workshops.
We are meticulous about where our food comes from. Every ingredient tells a story of sustainable farming and ethical practices.
{item.desc}
"{review.text}"
{review.author}
{review.role}