From 040fce9ea3bb79196a08445d45939565997b4203 Mon Sep 17 00:00:00 2001 From: Rajdip Sinh Date: Wed, 25 Oct 2023 13:15:01 +0530 Subject: [PATCH] Footer Completed Functionality left --- package-lock.json | 9 +++++ package.json | 1 + src/App.jsx | 10 ++++-- src/components/footer/Footer.jsx | 56 ++++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+), 3 deletions(-) create mode 100644 src/components/footer/Footer.jsx diff --git a/package-lock.json b/package-lock.json index 4b1e4af..798189a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", + "react-icons": "^4.11.0", "web-vitals": "^2.1.4" }, "devDependencies": { @@ -1921,6 +1922,14 @@ "react": "^18.2.0" } }, + "node_modules/react-icons": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.11.0.tgz", + "integrity": "sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==", + "peerDependencies": { + "react": "*" + } + }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", diff --git a/package.json b/package.json index 2b9e2d4..1767f57 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", + "react-icons": "^4.11.0", "web-vitals": "^2.1.4" }, "repository": { diff --git a/src/App.jsx b/src/App.jsx index 7e81f45..0e573ad 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,7 +1,11 @@ +import Footer from "./components/footer/Footer"; + function App() { return ( -
GDSC
- ) +
+
+
+ ); } -export default App \ No newline at end of file +export default App; diff --git a/src/components/footer/Footer.jsx b/src/components/footer/Footer.jsx new file mode 100644 index 0000000..43b4f46 --- /dev/null +++ b/src/components/footer/Footer.jsx @@ -0,0 +1,56 @@ +import React from "react"; +import { FaLinkedin, FaInstagram, FaTwitter } from "react-icons/fa"; + +export default function Footer() { + return ( +
+
+
+

+ Dive into the new world of in-house music +

+

+ Lorem ipsum dolor sit amet consectetur. At porttitor ut felis nisl + ultrices sed sit. Cras nibh quis et diam justo in. Sollicitudin enim + tincidunt eros mauris senectus neque. +

+
+
+

+ VISIT +

+ +
+
+

+ SOCIALS +

+
    +
  • + +
  • +
  • + +
  • +
  • + +
  • +
+
+
+
+ GDSC AEC +
+
+ ); +}