import React, { useState } from "react";
import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Textarea } from "@/components/ui/textarea";
export default function MindMitra() {
const [mood, setMood] = useState("");
const [entry, setEntry] = useState("");
const [quote, setQuote] = useState("You are doing your best, and that is enough.");
const handleMoodClick = (m) => setMood(m);
return (
{/* Daily Motivation */}
{/* Vent Out / Journal */}
);
}
🧠 MindMitra – Student Stress Relief App
{/* Mood Tracker */}How are you feeling today?
{['😊', '😐', '😔', '😠'].map((emoji) => (
))}
{mood && Your mood: {mood}
}🌟 Daily Motivation
“{quote}”