We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 907ad94 commit cf8a925Copy full SHA for cf8a925
.gitignore
@@ -42,4 +42,6 @@ next-env.d.ts
42
!.yarn/plugins
43
!.yarn/releases
44
!.yarn/sdks
45
-!.yarn/versions
+!.yarn/versions
46
+
47
+.idea
src/components/SocialResult/index.tsx
@@ -1,8 +1,10 @@
1
-interface SocialResultProps {}
+interface SocialResultProps {
2
3
-function SocialResult({}: SocialResultProps) {
4
- return <div className={"bg-white rounded-lg p-4"}>
+}
5
+function SocialResult({}: SocialResultProps) {
6
+ return <div className={"bg-gray-900 rounded-lg p-4 flex flex-col "}>
7
+ <h2 className={'text-center text-2xl font-semibold'}>Socials</h2>
8
</div>
9
}
10
0 commit comments