Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ function App() {
console.error(
"API Key is missing! Make sure .env file is in the root directory and server is restarted."
);
return "API Key is missing. Please add your Gemini API key.";
}

try {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NoteBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function NoteBox({

return (
<>
<div className="w-4xs h-80 bg-white border-gray-200 border-2 rounded-lg shadow-md hover:shadow-lg hover:border-blue-500 transition-shadow duration-300">
<div className="w-full h-80 bg-white border-gray-200 border-2 rounded-lg shadow-md hover:shadow-lg hover:border-blue-500 transition-shadow duration-300">
<div className="p-5">
<input
value={title}
Expand Down