Skip to content

Added NutriByteteam page #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
10 changes: 10 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask, jsonify

app = Flask(__name__)

@app.route('/api/hello', methods=['GET'])
def hellow_world():
return jsonify({"message": "Hellow from NutriByte API!"})

if __name__ == '__main__':
app.run(debug=True)
10 changes: 10 additions & 0 deletions teams-spring2025/NutriByte/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask, jsonify

app = Flask(__name__)

@app.route('/api/hello', methods=['GET'])
def hello_world():
return jsonify({"message": "Hello from NutriByte API!"})

if __name__ == '__main__':
app.run(debug=True)
21 changes: 21 additions & 0 deletions teams-spring2025/NutriByte/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NutriByte Team</title>
</head>
<body>
<h1>Welcome to the NutriByte Team Page</h1>
<p>This page is for the NutriByte team, working on meal prep solutions.</p>
<h2>Team Members</h2>
<ul>
<li>DeeAna Phommavanh - Frontend Developer</li>
<li>Eduardo Castro Becerra - Backend Developer</li>
<li>Bryan Martinez Ramirez - Database</li>
<li>Emil Pabustan - UI/UX</li>


</ul>
</body>
</html>
21 changes: 21 additions & 0 deletions teams-spring2025/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NutriByte Team</title>
</head>
<body>
<h1>Welcome to the NutriByte Team Page</h1>
<p>This page is for the NutriByte team, working on meal prep solutions.</p>
<h2>Team Members</h2>
<ul>
<li>DeeAna Phommavanh - Frontend Developer</li>
<li>Eduardo Castro Becerra - Backend Developer</li>
<li>Bryan Martinez Ramirez - Database</li>
<li>Emil Pabustan - UI/UX</li>


</ul>
</body>
</html>