diff --git a/package-lock.json b/package-lock.json
index 684d563..354e49b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,11 +1,11 @@
{
- "name": "educator-js-codespace-template",
+ "name": "CWB Hackathon App",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
- "name": "educator-js-codespace-template",
+ "name": "CWB Hackathon App",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
diff --git a/package.json b/package.json
index 8682a1f..2a09d02 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "CWB Hackathon App",
"version": "1.0.0",
- "description": "Educator JS Codespace Template",
+ "description": "CWB Hackathon App",
"source": "src/index.html",
"homepage": "https://codess-aus.github.io/CWBHackathonApp/",
"scripts": {
@@ -13,12 +13,12 @@
},
"repository": {
"type": "git",
- "url": "git+https://github.com/microsoft/codespaces-teaching-template-js.git"
+ "url": "git+https://github.com/codess-aus/CWBHackathonApp.git"
},
"author": "Microsoft",
"license": "ISC",
"bugs": {
- "url": "https://github.com/microsoft/codespaces-teaching-template-js/issues"
+ "url": "https://github.com/codess-aus/CWBHackathonApp/issues"
},
"dependencies": {
"react": "^18.2.0",
diff --git a/src/App.jsx b/src/App.jsx
index b952091..4f25f0f 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -10,7 +10,7 @@ import About from "./Components/About";
import Footer from "./Components/Footer";
import Header from "./Components/Header";
import Home from "./Components/Home";
-import Portfolio from "./Components/Portfolio";
+import Features from "./Components/Features";
import "./styles.css";
@@ -44,7 +44,7 @@ const App = () => {
-
+
);
diff --git a/src/Components/Features.jsx b/src/Components/Features.jsx
new file mode 100644
index 0000000..b908e87
--- /dev/null
+++ b/src/Components/Features.jsx
@@ -0,0 +1,87 @@
+/**
+ * Portfolio component
+ *
+ * Highlights some of your creations. These can be designs, websites,
+ * open source contributions, articles you've written and more.
+ *
+ * This is a great area for you to to continually add to and refine
+ * as you continue to learn and create.
+ */
+
+import React from "react";
+
+/**
+ * Desk image
+ *
+ * Below is a sample desk image. Feel free to update this to an image of your choice,
+ * updating below imageAltText to string that represents what you see in that image.
+ *
+ * Need an image? Check out https://unsplash.com to download a photo you
+ * freely use on your site.
+ */
+import image from "../images/learningapp.png";
+
+const imageAltText = "image of our learning app";
+
+/**
+ * Project list
+ *
+ * An array of objects that will be used to display for your project
+ * links section. Below is a sample, update to reflect links you'd like to highlight.
+ */
+const projectList = [
+ {
+ title: "Cognitive Semantic Search",
+ description: "Rank courses according to what the user is interested in, grounded in user content.",
+ url: "https://learn.microsoft.com/en-us/azure/architecture/ai-ml/openai/idea/search-and-query-using-openai-service",
+ image: "https://raw.githubusercontent.com/codess-aus/CWBHackathonApp/main/src/images/semanticsearch.png", // replace with your image URL
+ },
+ {
+ title: "Vector Embeddings",
+ description: "Linking meaningful content and ideas",
+ url: "https://learn.microsoft.com/en-us/azure/ai-services/openai/tutorials/embeddings?tabs=python-new%2Ccommand-line&pivots=programming-language-python",
+ image: "https://raw.githubusercontent.com/codess-aus/CWBHackathonApp/main/src/images/designacharacter.png", // replace with your image URL
+ },
+ {
+ title: "Chat Avatar",
+ description: "Human-like avatars to interact with users in a more engaging way.",
+ url: "https://learn.microsoft.com/en-us/azure/ai-services/speech-service/text-to-speech-avatar/what-is-text-to-speech-avatar",
+ image: "https://raw.githubusercontent.com/codess-aus/CWBHackathonApp/main/src/images/character2.png", // replace with your image URL
+ // replace with your image URL
+ },
+ {
+ title: "Speaker Recognition",
+ description: "AI recognises speaker and interacts with them contextually.",
+ url: "https://learn.microsoft.com/en-us/azure/ai-services/speech-service/speaker-recognition-overview",
+ image: "https://raw.githubusercontent.com/codess-aus/CWBHackathonApp/main/src/images/blockchain.png", // replace with your image URL
+ },
+];
+
+const Features = () => {
+ return (
+
+
+
+ );
+};
+export default Features;
diff --git a/src/Components/Header.jsx b/src/Components/Header.jsx
index d20f237..e72ad89 100644
--- a/src/Components/Header.jsx
+++ b/src/Components/Header.jsx
@@ -23,7 +23,7 @@ const Header = () => {
>
HomeAbout
- Portfolio
+ FeaturesContact
);
diff --git a/src/Components/Home.bak b/src/Components/Home.bak
new file mode 100644
index 0000000..e60b142
--- /dev/null
+++ b/src/Components/Home.bak
@@ -0,0 +1,52 @@
+/**
+ * Home component
+ *
+ * The section at the top of the page to display image of your
+ * choice, name and title that describes your career focus.
+ */
+
+import React from "react";
+import arrowSvg from "../images/down-arrow.svg";
+import PropTypes from "prop-types";
+
+/**
+ * Home background image
+ *
+ * Below is a sample image. Upload the image of your choice into the "images"
+ * directory and import here for use. Then, set imageAltText to string that
+ * represents what you see in that image.
+ *
+ *
+ * Need an image? Check out https://unsplash.com to download a photo you
+ * freely use on your site.
+ */
+import image from "../images/CWB1.png";
+
+const imageAltText = "Code without Barriers Banner";
+
+const Home = ({ name, title }) => {
+ return (
+
+
+
+
{name}
+
{title}
+
+
+
+
+
+ );
+};
+
+Home.defaultProps = {
+ name: "",
+ title: "",
+};
+
+Home.propTypes = {
+ name: PropTypes.string.isRequired,
+ title: PropTypes.string.isRequired,
+};
+
+export default Home;
diff --git a/src/Components/Home.jsx b/src/Components/Home.jsx
index a86b9c4..615ac9e 100644
--- a/src/Components/Home.jsx
+++ b/src/Components/Home.jsx
@@ -1,33 +1,14 @@
-/**
- * Home component
- *
- * The section at the top of the page to display image of your
- * choice, name and title that describes your career focus.
- */
-
import React from "react";
import arrowSvg from "../images/down-arrow.svg";
import PropTypes from "prop-types";
-
-/**
- * Home background image
- *
- * Below is a sample image. Upload the image of your choice into the "images"
- * directory and import here for use. Then, set imageAltText to string that
- * represents what you see in that image.
- *
- *
- * Need an image? Check out https://unsplash.com to download a photo you
- * freely use on your site.
- */
import image from "../images/CWB1.png";
const imageAltText = "Code without Barriers Banner";
const Home = ({ name, title }) => {
return (
-
-
+
+
{name}
{title}
@@ -49,4 +30,4 @@ Home.propTypes = {
title: PropTypes.string.isRequired,
};
-export default Home;
+export default Home;
\ No newline at end of file
diff --git a/src/Components/Portfolio.jsx b/src/Components/Portfolio.jsx
index a688136..b908e87 100644
--- a/src/Components/Portfolio.jsx
+++ b/src/Components/Portfolio.jsx
@@ -57,10 +57,10 @@ const projectList = [
},
];
-const Portfolio = () => {
+const Features = () => {
return (
-
-