Skip to content
Open
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
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-azuretools.vscode-docker"
]
}
19 changes: 17 additions & 2 deletions backend/src/routes/getGreeting.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
const GREETING = 'Hello world!';
const GREETINGS = [
"What happen?"
"Somebody set up us the bomb",
"Main screen turn on",
"Hello Mentlegen"
"All Your Base",
"Are Belong To Us",
"You have no Chance",
"Make your time",
"Move ZIG!"
"For great justice!",
"You know what you doing",
"How are you gentlemen!?",
"You!?"
"Take off every ZIG!!",
];

module.exports = async (req, res) => {
res.send({
greeting: GREETING,
greeting: GREETINGS[ Math.floor(Math.random() * GREETINGS.length )],
});
};
2 changes: 1 addition & 1 deletion client/src/components/AddNewItemForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function AddItemForm({ onNewItem }) {
value={newItem}
onChange={(e) => setNewItem(e.target.value)}
type="text"
placeholder="New Item"
placeholder="What will it be today?"
aria-label="New item"
/>
<Button
Expand Down
2 changes: 1 addition & 1 deletion client/src/index.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import 'bootstrap/scss/bootstrap';

body {
background-color: #f4f4f4;
background-color: #60566e;
margin-top: 50px;
font-family: 'Lato';
}