From f7bd2927cbe1c832b25ccc06d810ce4315b4ec9d Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 2 Mar 2024 00:25:32 -0300 Subject: [PATCH] feat(App): implement ContributionsSection and Footer --- src/App.tsx | 67 ++++------------------------------------------------- 1 file changed, 4 insertions(+), 63 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 1f39c23..05294a6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,8 +1,5 @@ -import classNames from "consts/classNames"; -import PROJECTS from "consts/projects"; -import SOCIALS from "consts/socials"; -import cn from "helpers/cn"; -import Card from "components/Card"; +import ContributionsSection from "components/ContributionsSection"; +import Footer from "components/Footer"; import Header from "components/Header"; import IntroSection from "components/IntroSection"; @@ -12,64 +9,8 @@ export default function App() {
-
-

- Contributions -

-
    - {PROJECTS.map((project) => ( -
  • - - {project.description} - -
  • - ))} -
-
-
- - Copyright (c) {new Date().getFullYear()} soujvnunes - - -
+ +
);