-
-
+
+
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
deleted file mode 100644
index dc079d8..0000000
--- a/src/pages/Home.tsx
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from "react";
-
-import { SectionFounders } from "../sections/SectionFounders";
-import { SectionEvents } from "../sections/SectionEvents";
-import { SectionLatestPosts } from "../sections/SectionLatestPosts";
-import { SectionMain } from "../sections/SectionMain";
-import { SectionOurPurpose } from "../sections/SectionOurPurpose";
-import { SectionTechLab } from "../sections/SectionTechLab";
-import { SectionKnowledgers } from "../sections/SectionKnowledgers";
-
-export function Home() {
- return (
- <>
-
-
-
-
-
-
-
- >
- );
-}
diff --git a/src/pages/home/Home.tsx b/src/pages/home/Home.tsx
new file mode 100644
index 0000000..1eff5cb
--- /dev/null
+++ b/src/pages/home/Home.tsx
@@ -0,0 +1,22 @@
+import React from "react";
+import { SectionMain } from "./sections/SectionMain";
+import { SectionOurPurpose } from "./sections/SectionOurPurpose";
+import { SectionFounders } from "./sections/SectionFounders";
+import { SectionLatestPosts } from "./sections/SectionLatestPosts";
+import { SectionTechLab } from "./sections/SectionTechLab";
+import { SectionKnowledgers } from "./sections/SectionKnowledgers";
+import { SectionEvents } from "./sections/SectionEvents";
+
+export function Home() {
+ return (
+ <>
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/sections/SectionEvents.tsx b/src/pages/home/sections/SectionEvents.tsx
similarity index 92%
rename from src/sections/SectionEvents.tsx
rename to src/pages/home/sections/SectionEvents.tsx
index e34ce7f..4bddde8 100644
--- a/src/sections/SectionEvents.tsx
+++ b/src/pages/home/sections/SectionEvents.tsx
@@ -1,8 +1,8 @@
import React from "react";
-import { Button } from "../components/ui/button/Button";
+import { Button } from "../../../components/ui/button/Button";
-import rocketImage from "../assets/images/rocket.svg";
+import rocketImage from "../../../assets/images/rocket.svg";
export function SectionEvents() {
return (
diff --git a/src/sections/SectionFounders.tsx b/src/pages/home/sections/SectionFounders.tsx
similarity index 85%
rename from src/sections/SectionFounders.tsx
rename to src/pages/home/sections/SectionFounders.tsx
index 201eae2..77f26ab 100644
--- a/src/sections/SectionFounders.tsx
+++ b/src/pages/home/sections/SectionFounders.tsx
@@ -1,10 +1,10 @@
import React, { useContext } from "react";
-import ImageFoundersDark from "../assets/images/founders-darkmode.png";
-import ImageFoundersLight from "../assets/images/founders-lightmode.png";
+import ImageFoundersDark from "../../../assets/images/founders-darkmode.png";
+import ImageFoundersLight from "../../../assets/images/founders-lightmode.png";
-import { Button } from "../components/ui/button/Button";
-import { ThemeContext } from "../context/ThemeContext";
+import { Button } from "../../../components/ui/button/Button";
+import { ThemeContext } from "../../../context/ThemeContext";
export function SectionFounders() {
const { darkMode } = useContext(ThemeContext);
diff --git a/src/sections/SectionKnowledgers.tsx b/src/pages/home/sections/SectionKnowledgers.tsx
similarity index 91%
rename from src/sections/SectionKnowledgers.tsx
rename to src/pages/home/sections/SectionKnowledgers.tsx
index 50b3ad1..eecdded 100644
--- a/src/sections/SectionKnowledgers.tsx
+++ b/src/pages/home/sections/SectionKnowledgers.tsx
@@ -1,7 +1,7 @@
import React from "react";
-import { Button } from "../components/ui/button/Button";
+import { Button } from "../../../components/ui/button/Button";
-import knowledgersImage from "../assets/images/knowledgers.png";
+import knowledgersImage from "../../../assets/images/knowledgers.png";
export function SectionKnowledgers() {
return (
diff --git a/src/sections/SectionLatestPosts.tsx b/src/pages/home/sections/SectionLatestPosts.tsx
similarity index 81%
rename from src/sections/SectionLatestPosts.tsx
rename to src/pages/home/sections/SectionLatestPosts.tsx
index 8cd99b5..99741dd 100644
--- a/src/sections/SectionLatestPosts.tsx
+++ b/src/pages/home/sections/SectionLatestPosts.tsx
@@ -1,7 +1,7 @@
import React from "react";
-import { PostPreview } from "../components/ui/posts/postpreview/PostPreview";
-import { Button } from "../components/ui/button/Button";
+import { PostPreview } from "../../../components/ui/posts/postpreview/PostPreview";
+import { Button } from "../../../components/ui/button/Button";
export function SectionLatestPosts() {
return (
diff --git a/src/sections/SectionMain.tsx b/src/pages/home/sections/SectionMain.tsx
similarity index 96%
rename from src/sections/SectionMain.tsx
rename to src/pages/home/sections/SectionMain.tsx
index eefc362..f205fda 100644
--- a/src/sections/SectionMain.tsx
+++ b/src/pages/home/sections/SectionMain.tsx
@@ -3,7 +3,7 @@ import React from "react";
import { CaretRight } from "@phosphor-icons/react";
import { Link } from "react-router-dom";
-import NewLogo from "../assets/images/techknowledge-logo.svg";
+import NewLogo from "../../../assets/images/techknowledge-logo.svg";
export function SectionMain() {
return (
diff --git a/src/sections/SectionOurPurpose.tsx b/src/pages/home/sections/SectionOurPurpose.tsx
similarity index 85%
rename from src/sections/SectionOurPurpose.tsx
rename to src/pages/home/sections/SectionOurPurpose.tsx
index acad144..a33ebd1 100644
--- a/src/sections/SectionOurPurpose.tsx
+++ b/src/pages/home/sections/SectionOurPurpose.tsx
@@ -1,5 +1,5 @@
import React from "react";
-import { CardOurPurpose } from "../components/ui/cardourpurpose/CardOurPurpose";
+import { CardOurPurpose } from "../../../components/ui/cardourpurpose/CardOurPurpose";
export function SectionOurPurpose() {
return (
diff --git a/src/sections/SectionTechLab.tsx b/src/pages/home/sections/SectionTechLab.tsx
similarity index 94%
rename from src/sections/SectionTechLab.tsx
rename to src/pages/home/sections/SectionTechLab.tsx
index 4c7a11c..cce2699 100644
--- a/src/sections/SectionTechLab.tsx
+++ b/src/pages/home/sections/SectionTechLab.tsx
@@ -1,7 +1,7 @@
import React from "react";
import { CaretRight } from "@phosphor-icons/react";
import { Link } from "react-router";
-import TechLabImage from "../assets/images/techknowledge-techlab.png";
+import TechLabImage from "../../../assets/images/techknowledge-techlab.png";
export function SectionTechLab() {
return (