diff --git a/src/components/Faq.jsx b/src/components/Faq.jsx
index 0c05ba1..8990ead 100644
--- a/src/components/Faq.jsx
+++ b/src/components/Faq.jsx
@@ -4,6 +4,7 @@ import { motion } from "framer-motion";
import { textVariant } from "../utils/motion";
import { SectionWrapper } from "../hoc";
import { faqs } from '../constants';
+import SocialMedia from './Socialmedia';
const Faq = () => {
const [activeIndex, setActiveIndex] = useState(null);
@@ -163,6 +164,11 @@ const Faq = () => {
))}
+
+
+
SOS12 Social Media
+
+
);
};
diff --git a/src/components/SocialMedia.jsx b/src/components/SocialMedia.jsx
new file mode 100644
index 0000000..e68364b
--- /dev/null
+++ b/src/components/SocialMedia.jsx
@@ -0,0 +1,45 @@
+import React from 'react';
+import { motion } from 'framer-motion';
+import Tilt from 'react-tilt';
+import { socialMediaData } from '../constants';
+
+const SocialMedia = () => {
+ return (
+
+ );
+}
+
+export default SocialMedia;
diff --git a/src/components/index.js b/src/components/index.js
index a24d237..4274924 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -7,6 +7,7 @@ import CanvasLoader from "./Loader";
import Faq from './Faq';
import Problems from './Problems';
import Preproblems from './Preproblems';
+import SocialMedia from './Socialmedia';
export {
Navbar,
@@ -18,4 +19,5 @@ export {
Faq,
Problems,
Preproblems,
+ SocialMedia,
};
diff --git a/src/constants/index.js b/src/constants/index.js
index 834f18d..a3d9f13 100644
--- a/src/constants/index.js
+++ b/src/constants/index.js
@@ -3,6 +3,9 @@ import {
contacts_pic,
faq_pic,
problems,
+ github,
+ instagram_icon,
+ discord_icon,
} from "../assets";
export const navLinks = [
@@ -63,5 +66,25 @@ const faqs = [
}
];
+const socialMediaData = [
+ {
+ title: 'Instagram',
+ icon: instagram_icon,
+ url: 'https://www.instagram.com/sos_camp12/',
+ color: 'linear-gradient(to bottom right, #FF0080, #7928CA)',
+ },
+ {
+ title: 'Discord',
+ icon: discord_icon,
+ url: 'https://discord.gg/wPAFD6qh',
+ color: 'linear-gradient(to bottom right, #7289DA, #5865F2)',
+ },
+ {
+ title: 'Github',
+ icon: github,
+ url: 'https://github.com/Rick-Lang/rickroll-lang',
+ color: 'linear-gradient(to bottom right, #24292E, #444D56)',
+ },
+];
-export { menu, faqs };
+export { menu, faqs, socialMediaData };