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 (
{/* Navigation */} {/* Hero Section */}
{/* Background Image with Overlay */}
Fresh healthy food
100% Plant Based

Nature's Best
on Your Plate

Experience the vibrant flavors of seasonal, locally-sourced ingredients crafted into culinary masterpieces that nourish both body and soul.

View Our Menu Our Story
{/* Philosophy Section */}
Farmer holding vegetables

"Respect the ingredient, respect the earth."

Our Philosophy

Sustainable Dining for a Healthier Future.

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.

Zero Waste

We compost 100% of our organic waste and avoid single-use plastics.

Community

Supporting local growers and hosting educational workshops.

{/* Sourcing / Ingredients */}

Consciously Sourced Ingredients

We are meticulous about where our food comes from. Every ingredient tells a story of sustainable farming and ethical practices.

{[ { icon: , title: "Organic Certified", desc: "100% organic produce free from synthetic pesticides and harmful fertilizers." }, { icon: , title: "Locally Grown", desc: "Sourced from farms within a 50-mile radius to ensure maximum freshness and support our neighbors." }, { icon: , title: "Heirloom Grains", desc: "We mill our own flour from ancient grains that promote soil health and biodiversity." } ].map((item, index) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* Menu Section */} {/* Gallery Section */} {/* Reviews Section */}

What Our Guests Say

{[ { text: "The most incredible vegan food I've ever tasted. Even my carnivorous husband was blown away by the flavors!", author: "Sarah Jenkins", role: "Local Guide" }, { text: "A breath of fresh air. The atmosphere is calming, the staff is knowledgeable, and the food is pure art.", author: "Michael Chen", role: "Food Critic" }, { text: "I love their commitment to sustainability. Eating here feels good for the body and the planet.", author: "Emma Watson", role: "Regular Guest" } ].map((review, i) => (
{[...Array(5)].map((_, i) => )}

"{review.text}"

{review.author[0]}

{review.author}

{review.role}

))}
{/* Contact & Location */}
{/* Contact Info */}

Visit Us

Location

1289 Green Valley Road
Portland, OR 97204

Hours

Tue - Sun: 11:00 AM - 10:00 PM
Monday: Closed for farming

Contact

(503) 555-0123
hello@rootandgrain.com

Follow our journey

{/* Form */}

Reserve a Table

For parties larger than 8, please call us directly.

{/* Footer */}
); }; export default RootAndGrain;