diff --git a/.all-contributorsrc b/.all-contributorsrc
index 2e05445..c79178d 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -43,6 +43,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "Mixel2004",
+ "name": "Mixel2004",
+ "avatar_url": "https://avatars.githubusercontent.com/u/84668201?v=4",
+ "profile": "https://github.com/Mixel2004",
+ "contributions": [
+ "code"
+ ]
}
]
}
diff --git a/README.md b/README.md
index b7d0697..8c122b9 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
-[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
+[![All Contributors](https://img.shields.io/badge/all_contributors-4-orange.svg?style=flat-square)](#contributors-)
@@ -235,6 +235,7 @@ Your appreciation makes us grow and glow up. ⭐
Ashish Padhy 💻 📆 ⚠️ 🚧 🚇 |
Jayesh Nayak 💻 |
anmol5936 💻 |
+ Mixel2004 💻 |
diff --git a/src/components/AboutUs.jsx b/src/components/AboutUs.jsx
new file mode 100644
index 0000000..26cf216
--- /dev/null
+++ b/src/components/AboutUs.jsx
@@ -0,0 +1,53 @@
+import { PersonalizedText, Paragraph } from './shared/typography/index.jsx';
+import aboutUsData from '../data/aboutUsData.js';
+
+export default function AboutUs() {
+ return (
+
+
+
+ {aboutUsData.tag1}
+
+ {aboutUsData.tag2}
+
+ {aboutUsData.tag3_char1}
+
+ {aboutUsData.tag3_wavy}
+
+ {aboutUsData.tag3}
+
+
+
+
+
+ {aboutUsData.lists.map((list, index) => (
+
+
+
+ {list.title}
+
+
+ ))}
+
+
+
+ You all are coming right ??...
+
+
+
+ {aboutUsData.content1}{' '}
+ {aboutUsData.content2}
+
+
+
+ );
+}
diff --git a/src/data/aboutUsData.js b/src/data/aboutUsData.js
new file mode 100644
index 0000000..8cec5bf
--- /dev/null
+++ b/src/data/aboutUsData.js
@@ -0,0 +1,28 @@
+const aboutUsData = {
+ tag1: "Let's relive & celebrate ",
+ tag2: 'our ',
+ tag3_char1: 'g',
+ tag3_wavy: 'ood day',
+ tag3: 's Together',
+ lists: [
+ {
+ title: 'Rewind',
+ img_url: 'https://res.cloudinary.com/dkivz06xv/image/upload/v1710089259/xqpydhigob3opgpzyv1a.png',
+ },
+ {
+ title: 'Reunite',
+ img_url: 'https://res.cloudinary.com/dkivz06xv/image/upload/v1710089483/kkubnibzjiyaevv6m2gr.png',
+ },
+ {
+ title: 'Rejoice',
+ img_url: 'https://res.cloudinary.com/dkivz06xv/image/upload/v1710089259/j9zi48resont3yqnudmm.png',
+ },
+ ],
+ content1:
+ 'Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur',
+ content2:
+ 'aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem',
+ star_img_url: 'https://res.cloudinary.com/dkivz06xv/image/upload/v1710089645/rvqsfd4sqaclbthidnxl.png',
+};
+
+export default aboutUsData;