The information provided on this website is for general informational purposes only. It is not intended as medical advice and should not be used as a substitute for consulting with a qualified healthcare professional.
+
By using this website, you agree to the terms and conditions outlined in this disclaimer. NutriHelp is not responsible for any actions taken based on the information provided on this site.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web-frontend/src/Disclaimer.js b/web-frontend/src/Disclaimer.js
new file mode 100644
index 000000000..f45d9fd9b
--- /dev/null
+++ b/web-frontend/src/Disclaimer.js
@@ -0,0 +1,5 @@
+// script.js
+document.getElementById("agreeButton").addEventListener("click", function () {
+ alert("Let's agree with NutriHelp Legal Disclaimer!");
+
+});
\ No newline at end of file
diff --git a/web-frontend/src/Welcome.html b/web-frontend/src/Welcome.html
new file mode 100644
index 000000000..0311e66c7
--- /dev/null
+++ b/web-frontend/src/Welcome.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+ NutriHelp - Get Started
+
+
+
+
+
+
+
NutriHelp
+
+
+
+
+
Get Started
+
Welcome to NutriHelp! Start your journey to better nutrition and health today.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web-frontend/src/welcome.css b/web-frontend/src/welcome.css
new file mode 100644
index 000000000..d8d7dc0b2
--- /dev/null
+++ b/web-frontend/src/welcome.css
@@ -0,0 +1,54 @@
+/* styles.css */
+body {
+ font-family: Arial, sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #fff;
+}
+
+header {
+ background-color: #9370DB;
+ color: #fff;
+ text-align: center;
+ padding: 20px;
+}
+
+.main-heading {
+ font-size: 36px;
+ margin: 0;
+}
+
+main {
+ padding: 20px;
+}
+
+.get-started {
+ background-color: #fff;
+ padding: 20px;
+ border-radius: 5px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+}
+
+h2 {
+ font-size: 24px;
+ color: #333;
+}
+
+p {
+ font-size: 16px;
+ color: #777;
+}
+
+button {
+ background-color: #9370DB;
+ color: #fff;
+ padding: 10px 20px;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ font-size: 16px;
+}
+
+button:hover {
+ background-color: #0056b3;
+}
\ No newline at end of file
diff --git a/web-frontend/src/welcome.js b/web-frontend/src/welcome.js
new file mode 100644
index 000000000..3027e5637
--- /dev/null
+++ b/web-frontend/src/welcome.js
@@ -0,0 +1,5 @@
+// script.js
+document.getElementById("startButton").addEventListener("click", function () {
+ alert("Let's get started with NutriHelp!");
+ // You can add more functionality here.
+});
\ No newline at end of file