diff --git a/index.html b/index.html
index ba47f90..aa571b5 100644
--- a/index.html
+++ b/index.html
@@ -5,6 +5,11 @@
-
CompanyPage
+
+
Company Profile
+
+

+
+
{companyFiltered.name}
+
About
+
{companyFiltered.description}
+
+
+ {companyFiltered['techStack'].map((tech) => {
+ return (
+
+

+
{tech.name}
+ )})}
);
}
diff --git a/src/pages/HomePage.jsx b/src/pages/HomePage.jsx
index e97e7de..04f3251 100644
--- a/src/pages/HomePage.jsx
+++ b/src/pages/HomePage.jsx
@@ -1,7 +1,21 @@
-function HomePage() {
+
+import { Link } from "react-router-dom";
+
+function HomePage({ companies }) {
return (
-
-
HomePage
+
+
StackTracker: Discover Tech Stacks Used by Top Companies
+ {companies.map((company) => {
+ return (
+
+
{company.name}
+

+
+ )
+ })}
);
}
diff --git a/src/pages/TechnologyPage.jsx b/src/pages/TechnologyPage.jsx
index 30f9414..f1c8b70 100644
--- a/src/pages/TechnologyPage.jsx
+++ b/src/pages/TechnologyPage.jsx
@@ -1,7 +1,27 @@
-function TechnologyPage() {
+
+import { useParams, useNavigate } from "react-router-dom";
+
+function TechnologyPage({ technologies }) {
+ const { slug } = useParams();
+ const navigate = useNavigate();
+
+ const filteredTechnology = technologies.find((tech) => tech.slug === slug);
+
return (
-
-
TechnologyPage
+
+
Technology Details
+
+

+
+
{filteredTechnology.name}
+
About
+
{filteredTechnology.description}
+
+
+
);
}