🥗
RaquelBritzke
Raquel Britzke Clinic · Food Plan System
🔑 API not configured
⚠️ No patient selected. Go to 👥 Patients, select a patient and click ⚡ Generate Plan.
👤 Patient Information
🎯 Goal and Preferences
🌱 Vegan 🥦 Vegetarian 🌾 Gluten-free 🥛 Lactose-free 🥚 Egg-free 🦐 Seafood-free ⚡ Low carb ☪️ Halal
💪 Whey Protein ⚡ Creatine 🐟 Omega-3 ☀️ Vitamin D 💊 Multivitamin ✨ Collagen 🔬 Glutamine 🏋️ BCAA 🦴 Calcium 🩸 Iron 🧠 Magnesium 🛡️ Zinc 🦠 Probiotic 🔴 Vitamin B12 🍊 Vitamin C
Mode:
g
g
g
🍳 Recipes to Include in this Plan
🔍 Select Reference Plan Template
Click to view plans that best match the patient profile
🥗
Food plan will appear here
Fill in the patient data and click
"⚡ Generate Quick Plan" or "🤖 Refine with AI"

🥘 Recipe Library

📂 Consultation History

🔑 Claude AI Integration
✅ Secure Connection: AI communication is managed by the server via authenticated proxy. No API key needed.
🏥 Clinic Data
📏 Clinic Rules for AI
These rules are sent to AI with each plan generation. One rule per line.
🍽️ Default Preferences
🔒 Data Security
✅ Never lose data
Patients are deactivated, never deleted. All consultations and plans are permanent. Supabase runs daily automatic backups.
✅ Access control
Row-Level Security ensures you only see your own patients. Data is encrypted at rest and in transit (TLS).
📦 Manual backup
Download a full copy of all your data at any time using the button below.

📚 Template Plan Bank

Clinic plans organized by category — used by AI as reference

👥 My Patients

👤

Select a patient

Click on a patient in the list or add a new one

🩺 Recent Consultations

📋

No consultations recorded yet

function imprimirPlanViewDay(){var t=document.getElementById("plan-view-title").textContent;var m=document.getElementById("plan-view-meta").textContent;var body=document.getElementById("plan-view-body");var cn=document.getElementById("clinic-name");var allDays=body.querySelectorAll("h2,h3");var dayTitles=[];allDays.forEach(function(h){if(h.textContent.match(/segunda|terça|quarta|quinta|sexta|sábado|domingo|monday|tuesday|wednesday|thursday|friday|saturday|sunday|opção|option|dia|day/i))dayTitles.push(h.textContent.trim());});if(dayTitles.length<=1){imprimirPlanView();return;}var sel=prompt("Which day to print? (1-"+dayTitles.length+")\n"+dayTitles.map(function(d,i){return (i+1)+". "+d;}).join("\n"));if(!sel){return;}var idx=parseInt(sel)-1;if(isNaN(idx)||idx<0||idx>=dayTitles.length){alert("Invalid selection");return;}var headers=[];body.querySelectorAll("h2,h3").forEach(function(h){if(h.textContent.match(/segunda|terça|quarta|quinta|sexta|sábado|domingo|monday|tuesday|wednesday|thursday|friday|saturday|sunday|opção|option|dia|day/i))headers.push(h);});var startEl=headers[idx];var endEl=headers[idx+1]||null;var content="";var el=startEl;while(el){content+=el.outerHTML;el=el.nextElementSibling;if(el===endEl)break;}document.getElementById("print-clinic-name").textContent=cn?cn.textContent:"Raquel Britzke Clinic";document.getElementById("print-meta").textContent=t+(m?" \u00b7 "+m:"");document.getElementById("print-patient-info").innerHTML="";document.getElementById("print-content").innerHTML=content;document.getElementById("print-date").textContent=new Date().toLocaleDateString("pt-BR");var fb=document.getElementById("print-footer-brand");if(fb)fb.textContent=cn?cn.textContent:"Raquel Britzke Clinic";window.print();}