About Recipeee
Your personal recipe collection made simple and beautiful
What is Recipeee?
Recipeee is a clean and simple recipe management app built with Next.js. It's designed to help you organize your favorite recipes in a beautiful, mobile-responsive interface.
Store your recipes as JSON files and let Recipeee handle the rest. No databases, no complicated setup - just pure simplicity.
Features
- ✓Mobile-responsive design
- ✓Clean and simple interface
- ✓JSON-based recipe storage
- ✓Detailed recipe views
- ✓Nutrition information
- ✓Step-by-step instructions
How to Add Recipes
Adding recipes to Recipeee is easy! Simply create JSON files in thesrc/data/recipes/directory.
Each recipe file should follow this structure:
{
"id": "recipe-name",
"title": "Recipe Title",
"description": "Brief description",
"servings": 4,
"prepTime": 15,
"cookTime": 30,
"difficulty": "easy",
"cuisine": "Italian",
"tags": ["dinner", "pasta"],
"ingredients": [
{
"id": "1",
"name": "Ingredient name",
"amount": 1,
"unit": "cup"
}
],
"instructions": [
{
"id": "1",
"step": 1,
"description": "Step description"
}
]
}Technologies Used
⚛️
Next.js
🎨
Tailwind CSS
📱
Responsive Design
🔧
TypeScript
📄
JSON Storage
🚀
Static Export