├── .prettierrc ├── .husky ├── .gitignore └── pre-commit ├── .nvmrc ├── .npmrc ├── CODEOWNERS ├── public ├── robots.txt ├── favicon.ico ├── logo512.png └── icons │ ├── ios │ ├── 16.png │ ├── 20.png │ ├── 29.png │ ├── 32.png │ ├── 40.png │ ├── 50.png │ ├── 57.png │ ├── 58.png │ ├── 60.png │ ├── 64.png │ ├── 72.png │ ├── 76.png │ ├── 80.png │ ├── 87.png │ ├── 100.png │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 128.png │ ├── 144.png │ ├── 152.png │ ├── 167.png │ ├── 180.png │ ├── 192.png │ ├── 256.png │ └── 512.png │ ├── windows11 │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-20.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-30.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-36.png │ ├── Square44x44Logo.targetsize-40.png │ ├── Square44x44Logo.targetsize-44.png │ ├── Square44x44Logo.targetsize-48.png │ ├── Square44x44Logo.targetsize-60.png │ ├── Square44x44Logo.targetsize-64.png │ ├── Square44x44Logo.targetsize-72.png │ ├── Square44x44Logo.targetsize-80.png │ ├── Square44x44Logo.targetsize-96.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-20.png │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ ├── Square44x44Logo.altform-unplated_targetsize-30.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-36.png │ ├── Square44x44Logo.altform-unplated_targetsize-40.png │ ├── Square44x44Logo.altform-unplated_targetsize-44.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-60.png │ ├── Square44x44Logo.altform-unplated_targetsize-64.png │ ├── Square44x44Logo.altform-unplated_targetsize-72.png │ ├── Square44x44Logo.altform-unplated_targetsize-80.png │ ├── Square44x44Logo.altform-unplated_targetsize-96.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-20.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-30.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-36.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-40.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-44.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-60.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-64.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-72.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-80.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-96.png │ └── Square44x44Logo.altform-lightunplated_targetsize-256.png │ └── android │ ├── android-launchericon-48-48.png │ ├── android-launchericon-72-72.png │ ├── android-launchericon-96-96.png │ ├── android-launchericon-144-144.png │ ├── android-launchericon-192-192.png │ └── android-launchericon-512-512.png ├── .prettierignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── config.yml ├── config │ └── labeler.yml └── workflows │ ├── json-check.yml │ └── issue-lock-unlock.yml ├── data ├── modirocks.json ├── soumik-saha.json ├── OtomuolaAdebayo.json ├── anujkumarwebdev.json ├── daniel-jp │ └── testimonials │ │ └── daniel-jp.json ├── Shreypatel911.json ├── Pradumnasaraf │ └── testimonials │ │ ├── sarafpradumna.json │ │ ├── MadhuSaini22.json │ │ ├── eddiejaoude.json │ │ ├── iam-Rps.json │ │ ├── Anushka-codergirl.json │ │ └── Njong392.json ├── sarafpradumna │ └── testimonials │ │ └── Pradumnasaraf.json ├── NitishRawat123.json ├── VedantAndhale │ └── testimonials │ │ └── Vedantpr0.json ├── Webdevava │ └── testimonials │ │ └── Webdevava.json ├── streetstylecoder.json ├── Joegebah │ └── testimonials │ │ └── Joegebah.json ├── OlojaMuyiwa │ └── testimonials │ │ └── OlojaMuyiwa.json ├── over-light │ └── testimonials │ │ └── over-light.json ├── Rahul-Prasad-07 │ └── testimonials │ │ └── PatelYash07.json ├── vinyldavyl │ └── testimonials │ │ └── Vinyl-Davyl.json ├── Siwi0w0 │ └── testimonials │ │ └── Siwi0w0.json ├── avie-dev │ └── testimonials │ │ ├── xkrishguptaa.json │ │ ├── tobySolutions.json │ │ ├── mpotane.json │ │ └── Spiritdivine.json ├── LennonLinaresA │ └── testimonials │ │ └── LennonLinaresA.json ├── naomi-lgbt │ └── testimonials │ │ └── naomi-lgbt.json ├── oyepriyansh │ └── testimonials │ │ └── oyepriyansh.json ├── Kishore-r-77.json ├── ihatespaghetti │ └── testimonials │ │ └── ihatespaghetti.json ├── salaheddine420 │ └── testimonials │ │ └── thsurgeonofdeath.json ├── LinuxGamer │ └── testimonials │ │ └── althios.json ├── branrm.json ├── RockingSNP │ └── testimonials │ │ └── RockingSNP.json ├── ibrahimq21.json ├── Rahul-Bhati │ └── testimonials │ │ └── Rahul-Bhati.json ├── eddiejaoude │ └── testimonials │ │ ├── thsurgeonofdeath.json │ │ ├── Srinja333.json │ │ ├── priyankarpal.json │ │ ├── sagarbangade.json │ │ ├── xkrishguptaa.json │ │ ├── ZeeMonk-pixel.json │ │ ├── avinashji1302.json │ │ ├── tobySolutions.json │ │ ├── Rishabh-Singh-Codes.json │ │ └── Ertan222.json ├── sahil-sagwekar2652 │ └── testimonials │ │ └── Shubham185y.json ├── tvjones.json ├── xkrishguptaa │ └── testimonials │ │ ├── eddiejaoude.json │ │ └── LinuxGamer.json ├── AliMora83 │ └── testimonials │ │ ├── vindexTOS.json │ │ ├── yi-lin-1234.json │ │ └── varchodi.json ├── FrancescoXX │ └── testimonials │ │ ├── git-suryacs.json │ │ ├── LinuxGamer.json │ │ ├── Dun-sin.json │ │ ├── devvsakib.json │ │ ├── eddiejaoude.json │ │ ├── oyenolaphilipinc.json │ │ └── Njong392.json ├── aaronmack │ └── testimonials │ │ └── milkBoy.json ├── DominicFrei │ └── testimonials │ │ ├── eddiejaoude.json │ │ └── loftwah.json ├── runelk.json ├── Shubham185y │ └── testimonials │ │ └── sahil-sagwekar2652.json ├── mpotane │ └── testimonials │ │ └── jofftiquez.json ├── EddieHubCommunity │ └── testimonials │ │ ├── LinuxGamer.json │ │ ├── loftwah.json │ │ ├── priyankarpal.json │ │ └── dren98.json ├── Husaintidiwala ├── MhL5.json ├── mnvsk97.json ├── zheroin.json ├── Abhish7k.json ├── Kanishk10k.json ├── Ritisha542.json ├── cheehieu │ └── testimonials │ │ └── cheehieu.json ├── devashizh.json ├── raghu-007 │ └── testimonials │ │ └── raghu-007.json ├── Jkudjo.json ├── Kzoeps.json ├── Skagra42.json ├── harohar13.json ├── jiafie7.json ├── vishal206.json ├── HIMANSHIKSHARMA.json ├── TusharAgarwal18.json ├── jossse69.json ├── konpal-sharma.json ├── shubhsh19.json ├── AkshayAwate.json ├── JulieB16.json ├── VinsonSamuel.json ├── bhawanak0504.json ├── curi-adi.json ├── dikshitasharma.json ├── donlouie.json ├── its-kunal.json ├── pulkitbhargava.json ├── taravis.json ├── tusharsinghrawat.json ├── Akash3121.json ├── Landouda.json ├── Mitvesh.json ├── Pratikkumare.json ├── adityasp1.json ├── arijit-pal.json ├── jennifer-pecky.json ├── philling1.json ├── ryan-broguiere.json ├── ApurvaBasule.json ├── Chavda-Mitul.json ├── KaushikKundu.json ├── Manishku0722.json ├── althios.json ├── homelyseven250.json ├── ibilalkayy │ └── testimonials │ │ ├── eddiejaoude.json │ │ └── hola-soy-milk.json ├── sohamsattigeri.json ├── AliReza1083 │ └── testimonials │ │ └── cjayjonathan.json ├── Arshdeep-0509.json ├── Honey171.json ├── IsaamAkhtar.json ├── NiikNiik.json ├── SwapnilPatle01.json ├── Tharun-Akuthota.json ├── arefathi.json ├── orunto.json ├── pradhuman09.json ├── rishabhsinghal.json ├── Lakshya-bhavsar.json ├── Panquesito7 │ └── testimonials │ │ └── YashDaga17.json ├── VikeCode.json ├── VittorOlliveira │ └── testimonials │ │ └── daniel-jp.json ├── avidcoder101.json ├── nitishkumar07.json ├── shubhalgupta.json ├── Aadarsh805 │ └── testimonials │ │ └── eddiejaoude.json ├── SahilSinghTomar.json ├── ZaidKhan2002.json ├── infotheharshit.json ├── itsbhavsagar.json ├── jessiebelle.json ├── juliafmorgado │ └── testimonials │ │ ├── eddiejaoude.json │ │ └── payalpm.json ├── mrunlikeliest.json ├── njolipatrick.json ├── ragibajmal3.json ├── sfolador.json ├── AniketNS.json ├── Haile-08.json ├── Kritipatwa16.json ├── Pushkar-Gameti.json ├── dsjoench.json ├── rodgersgitau.json ├── AashishKr27.json ├── SK-x7.json ├── UVSali.json ├── dhruvabhat24 │ └── testimonials │ │ ├── Abiji-2020.json │ │ └── sujan5757.json ├── hakkanoodles.json ├── joelkabamba │ └── testimonials │ │ └── daniel-jp.json ├── jofftiquez │ └── testimonials │ │ └── mpotane.json ├── Sanmindaniels07 │ └── testimonials │ │ └── Sanmidaniels07.json ├── nithin999989.json ├── spy-1234.json ├── AasthaDakhera.json ├── Divyanshu212.json ├── Sugamgoel28.json ├── amanGit010.json ├── ayodejiades.json ├── krishnanunnijs.json ├── nfa1.json ├── obaidashfaq20.json ├── Swapnil-11-04-01.json ├── avisek85.json ├── imran1509 │ └── testimonials │ │ └── gagan-baghel.json ├── jainankit0811.json ├── marlonaesparza.json ├── samchan.json ├── samil-web.json ├── DaduDev │ └── testimonials │ │ └── DaduDev.json ├── Quarkyy77.json ├── RJPalmer.json ├── niwei822.json ├── AasthaShahCodes │ └── testimonials │ │ └── tobySolutions.json ├── ikembakwem.json ├── lvnilesh.json ├── Badr281 │ └── testimonials │ │ └── daniel-jp.json ├── MahabubArafat.json ├── allexgut.json ├── deepak039543.json ├── kahmed-stack.json ├── karthiknadar1204.json ├── mctilde.json ├── sharipoff-0-1.json ├── tsipporahc.json ├── vanshiz.json ├── zakafan.json ├── qaidjoharj53 │ └── testimonials │ │ └── qaidjoharj53.json ├── Satyxm.json ├── iAnonymous3000 │ └── testimonials │ │ └── nicfab.json ├── raviraj-github │ └── testimonials │ │ └── xkrishguptaa.json ├── sachindevs.json ├── tobySolutions │ └── testimonials │ │ ├── MadhuSaini22.json │ │ └── oyenolaphilipinc.json ├── 254guru.json ├── thunderbirdceg.json ├── Adebaicy.json ├── LVSMix.json ├── Mykelz.json ├── kush6291.json ├── vemuladinesh25082002.json ├── Freedteck.json ├── Proyecto-IntegrAccion.json ├── Sunil8wale.json ├── Arindam200 │ └── testimonials │ │ ├── Malavi1.json │ │ └── MadhuSaini22.json ├── ALIPHATICHYD.json ├── DeepanshuRohilla15.json ├── EmmanuelAjibokun.json ├── Ketankham.json ├── abdqudus.json ├── rohitg00 │ └── testimonials │ │ └── Rahul-Prasad-07.json ├── suchakra012.json ├── CoffeeGeek101 │ └── testimonials │ │ └── vatsalsinghkv.json ├── Ellah120 │ └── testimonials │ │ └── tobySolutions.json ├── mohan.json ├── GrahamTheDevRel │ └── testimonials │ │ └── loftwah.json ├── irusha.json ├── yobuir.json ├── florianclanet.json ├── gurjeetsinghvirdee │ └── testimonials │ │ └── ishikagoyal02.json ├── qwertyroop.json ├── ChinmayMhatre │ └── testimonials │ │ └── Aadarsh805.json ├── Taiwrash │ └── testimonials │ │ └── Olalekan24434.json ├── thtauhid.json ├── ChavvaNarayana.json ├── KaushikK.json ├── Nikhilfy.json ├── bhargav794.json ├── rohitagr0310 │ └── testimonials │ │ └── jainankit0811.json ├── tenyapious.json ├── zodraccir.json ├── DaminiM-23.json ├── IsratIJK.json ├── Omkar.json ├── an4s911.json ├── fatimakay.json ├── foxy4096.json ├── tplive.json ├── Bharath-V26.json ├── MadhuSaini22 │ └── testimonials │ │ └── oyenolaphilipinc.json ├── SiddheshBangar │ └── testimonials │ │ └── Arindam200.json ├── arnav1776.json ├── enn-dee.json ├── goobric.json ├── mkbhru.json ├── nitisjan.json ├── renzoromares.json ├── thebarshablog │ └── events │ │ └── 2023-05-11-kcdturkey-conf.json ├── Garvitaj12.json ├── abhay-h.json ├── adixit7386.json ├── akhil.json ├── anish27.json ├── ankur0904.json ├── badmus306.json ├── issamahwach.json ├── izzarzn.json ├── jatin.json ├── rajiv.json ├── rdegbe.json ├── robert5313.json ├── shrix1.json ├── sunil_joshi.json ├── vrajdesai78.json ├── zaktech96.json ├── Gajendrakm.json ├── Govamarket.json ├── PriyanshuIndra.json ├── SaNsK11.json ├── Shubham185y.json ├── SulthanNK.json ├── Viveksati5143 │ └── testimonials │ │ └── akshitagupta15june.json ├── adil14788.json ├── ahnafahamed.json ├── ashishshaji.json ├── ashwinair.json ├── bugsyy157.json ├── devsurajrai.json ├── harikanani.json ├── hiteshkowdiki.json ├── jayvirrathi.json ├── manojsai1.json ├── saikalyan.json ├── shreyas0924.json ├── swapnul.json ├── ta-sakin.json ├── vrishti29.json ├── Althaf66.json ├── Bakugo90.json ├── EndGaurav.json ├── JoelPickin │ └── testimonials │ │ └── CBID2.json ├── MeetMulik.json ├── Nikhil-1503.json ├── RobJackTech.json ├── Schrodinger-Hat │ └── events │ │ └── 2023-03-24-os-day.json ├── YanaGorina-alt.json ├── achutendra.json ├── amisha.json ├── ankushsinghgandhi │ └── testimonials │ │ └── domz00-2006.json ├── ashishtom.json ├── manishitMani.json ├── mansig20.json ├── nikhilhuirem.json ├── sreekar-tammana.json ├── technophile-04.json ├── wajid281.json ├── yogesh.json ├── BatuhanOnge.json ├── LakshayVardhan.json ├── LokeshDigari.json ├── Pranit-02.json ├── SattyamSamania.json ├── Uvacoder.json ├── abewartech.json ├── akhileshthite.json ├── amarjeet.json ├── anaskhan28.json ├── eddejayaklu.json ├── iasonathanasiosgiatsios.json ├── joeboadiDev.json ├── kabir0x17.json ├── marcelosousa.json ├── mayurstwt.json ├── mikeysan.json ├── mohamed_ah.json ├── mohammad.json ├── sumitmukharjeeeeee.json ├── zadilkhwaja.json ├── 2brownc.json ├── AnishLohiya.json ├── MukulKolpe.json ├── Pushpendra518.json ├── abubakarsadiqq.json ├── ad3rinto.json ├── arun12329.json ├── ashishk1331.json ├── dipankar.json ├── harshit-002.json ├── jainam-r.json ├── nirbhay12345.json ├── omkar342.json ├── pratit989.json ├── raghu-007.json ├── raiyanmook27.json ├── rajaditya06.json ├── slowcheetah07.json ├── ssvali.json ├── zehra47.json ├── Adarsh.json ├── Aliencoder-75.json ├── Aryan.json ├── CM-Sharan.json ├── Dun-sin │ └── testimonials │ │ └── sojijr.json └── Keith-Web3.json ├── .gitpod.Dockerfile ├── tests ├── data │ ├── _test-profile-user-1.json │ ├── _test-profile-user-3.json │ └── _test-profile-user-5.json └── setup │ └── test-users.js ├── components ├── mdx │ ├── Li.js │ ├── Strong.js │ ├── Table.js │ └── BlockQuote.js ├── Page.js ├── layouts │ └── BlankLayout.js ├── statistics │ └── ProgressBar.js ├── form │ └── Label.js ├── embeds │ └── Youtube.js └── tag │ └── TagSimple.js ├── postcss.config.js ├── services └── utils │ ├── classNames.js │ ├── objectToLabelValueArray.js │ └── abbreviateNumbers.js ├── SECURITY.md ├── stories └── components │ ├── Footer.stories.js │ ├── navbar │ └── Navbar.stories │ └── user │ ├── UserTestimonials.stories.js │ └── UserLink.stories.js ├── mongo-compose.yml ├── config ├── stripe.js └── logger.js ├── vercel.json ├── Dockerfile ├── jsconfig.json ├── constants └── index.js ├── .dockerignore └── Dockerfile.dev /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.17.0 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run lint 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | pages/docs @SaraJaoude 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # allow all crawlers 2 | user-agent: * 3 | allow: / 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | pages/docs/environments/environment-variables.mdx 3 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/logo512.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [eddiejaoude] 4 | -------------------------------------------------------------------------------- /data/modirocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aman Anand", 3 | "bio": "Budding full stack developer" 4 | } 5 | -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-mongodb:latest 2 | RUN npx playwright install-deps chromium 3 | -------------------------------------------------------------------------------- /data/soumik-saha.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Soumik Saha", 3 | "bio": "Code hard to change the world!" 4 | } 5 | -------------------------------------------------------------------------------- /public/icons/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/16.png -------------------------------------------------------------------------------- /public/icons/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/20.png -------------------------------------------------------------------------------- /public/icons/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/29.png -------------------------------------------------------------------------------- /public/icons/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/32.png -------------------------------------------------------------------------------- /public/icons/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/40.png -------------------------------------------------------------------------------- /public/icons/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/50.png -------------------------------------------------------------------------------- /public/icons/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/57.png -------------------------------------------------------------------------------- /public/icons/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/58.png -------------------------------------------------------------------------------- /public/icons/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/60.png -------------------------------------------------------------------------------- /public/icons/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/64.png -------------------------------------------------------------------------------- /public/icons/ios/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/72.png -------------------------------------------------------------------------------- /public/icons/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/76.png -------------------------------------------------------------------------------- /public/icons/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/80.png -------------------------------------------------------------------------------- /public/icons/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/87.png -------------------------------------------------------------------------------- /data/OtomuolaAdebayo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adebayo Otomuola", 3 | "bio": "I am fullstack developer" 4 | } 5 | -------------------------------------------------------------------------------- /public/icons/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/100.png -------------------------------------------------------------------------------- /public/icons/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/1024.png -------------------------------------------------------------------------------- /public/icons/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/114.png -------------------------------------------------------------------------------- /public/icons/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/120.png -------------------------------------------------------------------------------- /public/icons/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/128.png -------------------------------------------------------------------------------- /public/icons/ios/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/144.png -------------------------------------------------------------------------------- /public/icons/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/152.png -------------------------------------------------------------------------------- /public/icons/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/167.png -------------------------------------------------------------------------------- /public/icons/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/180.png -------------------------------------------------------------------------------- /public/icons/ios/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/192.png -------------------------------------------------------------------------------- /public/icons/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/256.png -------------------------------------------------------------------------------- /public/icons/ios/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/ios/512.png -------------------------------------------------------------------------------- /tests/data/_test-profile-user-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test User Name 1", 3 | "bio": "Test user bio 1" 4 | } 5 | -------------------------------------------------------------------------------- /data/anujkumarwebdev.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "anujkumarwebdev", 3 | "bio": "Laravel and Node js developer" 4 | } 5 | -------------------------------------------------------------------------------- /components/mdx/Li.js: -------------------------------------------------------------------------------- 1 | export default function Li(props) { 2 | return
  • ; 3 | } 4 | -------------------------------------------------------------------------------- /data/daniel-jp/testimonials/daniel-jp.json: -------------------------------------------------------------------------------- 1 | { "title": "testimonials", "description": "testimonials", "date": "2023-01-23" } 2 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /data/Shreypatel911.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shrey Patel", 3 | "bio": "Full stack software engineer, learning open source." 4 | } 5 | -------------------------------------------------------------------------------- /services/utils/classNames.js: -------------------------------------------------------------------------------- 1 | export const classNames = (...classes) => { 2 | return classes.filter(Boolean).join(" "); 3 | }; 4 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/sarafpradumna.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Test", 3 | "description": "Test", 4 | "date": "2023-07-28" 5 | } 6 | -------------------------------------------------------------------------------- /data/sarafpradumna/testimonials/Pradumnasaraf.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Test", 3 | "description": "Test", 4 | "date": "2023-07-28" 5 | } 6 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | - Please do not create GitHub issues to report security vulnerabilities. 2 | - Instead, report them via . 3 | -------------------------------------------------------------------------------- /data/NitishRawat123.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nitish Rawat", 3 | "bio": "A tech enthusiat who want to do small contribution from one behalf" 4 | } 5 | -------------------------------------------------------------------------------- /data/VedantAndhale/testimonials/Vedantpr0.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Great dev", 3 | "description": "nice workshop", 4 | "date": "2024-02-29" 5 | } -------------------------------------------------------------------------------- /data/Webdevava/testimonials/Webdevava.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My first Pull request", 3 | "description": "", 4 | "date": "2023-05-10" 5 | } 6 | -------------------------------------------------------------------------------- /data/streetstylecoder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Harsh Dhariwal", 3 | "bio": "backend developer and a somphomore at JIIT Noida", 4 | "links": [] 5 | } 6 | -------------------------------------------------------------------------------- /public/icons/windows11/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/LargeTile.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/LargeTile.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/LargeTile.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/LargeTile.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/LargeTile.scale-400.png -------------------------------------------------------------------------------- /public/icons/windows11/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SmallTile.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SmallTile.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SmallTile.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SmallTile.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SmallTile.scale-400.png -------------------------------------------------------------------------------- /public/icons/windows11/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /components/Page.js: -------------------------------------------------------------------------------- 1 | export default function Page({ children }) { 2 | return
    {children}
    ; 3 | } 4 | -------------------------------------------------------------------------------- /data/Joegebah/testimonials/Joegebah.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "to complete the profile", 3 | "description": "i am him", 4 | "date": "2023-07-06" 5 | } 6 | -------------------------------------------------------------------------------- /data/OlojaMuyiwa/testimonials/OlojaMuyiwa.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Nice link", 3 | "description": "I think it’s awesome", 4 | "date": "2023-01-04" 5 | } 6 | -------------------------------------------------------------------------------- /data/over-light/testimonials/over-light.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "please invite me.", 3 | "description": "please invite me.", 4 | "date": "2024-02-29" 5 | } -------------------------------------------------------------------------------- /components/mdx/Strong.js: -------------------------------------------------------------------------------- 1 | const Strong = ({ children }) => { 2 | return {children}; 3 | }; 4 | 5 | export default Strong; 6 | -------------------------------------------------------------------------------- /data/Rahul-Prasad-07/testimonials/PatelYash07.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Demo", 3 | "description": "This is a demo testimonial", 4 | "date": "2023-01-11" 5 | } 6 | -------------------------------------------------------------------------------- /data/vinyldavyl/testimonials/Vinyl-Davyl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Acknowledgement", 3 | "description": "Marveled Validation", 4 | "date": "2023-01-16" 5 | } 6 | -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /public/icons/windows11/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /data/Siwi0w0/testimonials/Siwi0w0.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "First Question", 3 | "description": "I just want to see how it works.", 4 | "date": "2023-08-13" 5 | } 6 | -------------------------------------------------------------------------------- /data/avie-dev/testimonials/xkrishguptaa.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Happy birthday Avie!", 3 | "description": "Happy birthday avie :tada:", 4 | "date": "2024-01-06" 5 | } -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /public/icons/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /public/icons/windows11/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /data/LennonLinaresA/testimonials/LennonLinaresA.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "He is perfect", 3 | "description": "ayuda como se hace esto", 4 | "date": "2023-09-18" 5 | } 6 | -------------------------------------------------------------------------------- /data/naomi-lgbt/testimonials/naomi-lgbt.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Just a Test", 3 | "description": "Can I add a testimonial for myself?", 4 | "date": "2023-06-21" 5 | } 6 | -------------------------------------------------------------------------------- /data/oyepriyansh/testimonials/oyepriyansh.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Test", 3 | "description": "Testing Testimonial feature on my profile", 4 | "date": "2023-10-16" 5 | } -------------------------------------------------------------------------------- /public/icons/windows11/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /public/icons/windows11/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /public/icons/windows11/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /public/icons/windows11/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /public/icons/windows11/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /stories/components/Footer.stories.js: -------------------------------------------------------------------------------- 1 | import Footer from "@components/Footer"; 2 | 3 | export default { 4 | component: Footer, 5 | }; 6 | 7 | export const Basic = {}; 8 | -------------------------------------------------------------------------------- /data/Kishore-r-77.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kishore.R (test)", 3 | "bio": "I'm a Fullstack Developer. I've started to Explore and Contribute to Opensource Projeccts." 4 | } 5 | -------------------------------------------------------------------------------- /data/ihatespaghetti/testimonials/ihatespaghetti.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "This is a test", 3 | "description": "Checking out this feature", 4 | "date": "2023-07-14" 5 | } 6 | -------------------------------------------------------------------------------- /data/salaheddine420/testimonials/thsurgeonofdeath.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "testing testimonial", 3 | "description": "Cool projects only!", 4 | "date": "2023-01-22" 5 | } 6 | -------------------------------------------------------------------------------- /mongo-compose.yml: -------------------------------------------------------------------------------- 1 | # docker compose -f mongo-compose.yml up 2 | version: "3.9" 3 | services: 4 | mongodb: 5 | image: mongo:6.0 6 | ports: 7 | - "27017:27017" 8 | -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /data/LinuxGamer/testimonials/althios.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Ed...documentation pls", 3 | "description": "add a commentary on your roadmaps", 4 | "date": "2023-01-21" 5 | } 6 | -------------------------------------------------------------------------------- /data/branrm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Brandon Rodriguez (SquatCub)", 3 | "bio": "Computer systems engineer | Passionate about the code | Full Stack Dev | Front End Affinity" 4 | } 5 | -------------------------------------------------------------------------------- /data/RockingSNP/testimonials/RockingSNP.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Started Contributing In open Source", 3 | "description": "Its going to be great.", 4 | "date": "2022-11-13" 5 | } 6 | -------------------------------------------------------------------------------- /data/ibrahimq21.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ibrahim Qureshi", 3 | "bio": "I am an emerging tech enthusiast with a passion for creating innovative solutions using the latest technologies" 4 | } 5 | -------------------------------------------------------------------------------- /components/mdx/Table.js: -------------------------------------------------------------------------------- 1 | export default function Table(props) { 2 | return ( 3 |
    4 |
    5 |
    6 | ); 7 | } 8 | -------------------------------------------------------------------------------- /data/Rahul-Bhati/testimonials/Rahul-Bhati.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "New Dev Showed", 3 | "description": "I am fresher in developer field please take care of me\r\nThanks", 4 | "date": "2023-09-01" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/thsurgeonofdeath.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "good projects", 3 | "description": "he makes very good project and have a good youtube chanel", 4 | "date": "2023-01-22" 5 | } 6 | -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-44.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /data/sahil-sagwekar2652/testimonials/Shubham185y.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Testimonial", 3 | "description": "Best guy to work with on python related and backend related projects", 4 | "date": "2023-03-30" 5 | } 6 | -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png -------------------------------------------------------------------------------- /components/layouts/BlankLayout.js: -------------------------------------------------------------------------------- 1 | export default function BlankLayout({ children }) { 2 | return ( 3 |
    4 |
    {children}
    5 |
    6 | ); 7 | } 8 | -------------------------------------------------------------------------------- /public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EddieHubCommunity/BioDrop/HEAD/public/icons/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /services/utils/objectToLabelValueArray.js: -------------------------------------------------------------------------------- 1 | export const objectToLabelValueArray = (object) => { 2 | return Object.entries(object).map(([key, value]) => { 3 | return { label: value, value: key }; 4 | }); 5 | }; 6 | -------------------------------------------------------------------------------- /data/tvjones.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Taye-Vaughn Jones", 3 | "links": [ 4 | { 5 | "name": "GitHub", 6 | "url": "https://github.com/tvjones", 7 | "icon": "FaGithub" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /services/utils/abbreviateNumbers.js: -------------------------------------------------------------------------------- 1 | export function abbreviateNumber(n, locale = "en-US") { 2 | return Intl.NumberFormat(locale, { 3 | notation: "compact", 4 | compactDisplay: "short", 5 | }).format(n); 6 | } 7 | -------------------------------------------------------------------------------- /data/xkrishguptaa/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Super supportive", 3 | "description": "Krish is full of energy and always has many ideas! Plus Krish always supports everyone.", 4 | "date": "2023-01-29" 5 | } 6 | -------------------------------------------------------------------------------- /data/AliMora83/testimonials/vindexTOS.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Working with ali on chingu project", 3 | "description": "Great working with you ali, truly responsible person who will do what he says", 4 | "date": "2023-09-21" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/git-suryacs.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "You are the best!", 3 | "description": "Francesco is one of the best educational youtuber and inspires me and a whole lot of people", 4 | "date": "2023-01-27" 5 | } 6 | -------------------------------------------------------------------------------- /data/aaronmack/testimonials/milkBoy.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Testimonial For Aaron", 3 | "description": "Aaron is very helpful, full of energy, and hopes that his ideas will become greater and greater.", 4 | "date": "2023-04-27" 5 | } 6 | -------------------------------------------------------------------------------- /tests/setup/test-users.js: -------------------------------------------------------------------------------- 1 | export const USERS = [ 2 | "_test-profile-user-1", 3 | "_test-profile-user-2", 4 | "_test-profile-user-3", 5 | "_test-profile-user-4", 6 | "_test-profile-user-5", 7 | "_test-profile-user-6", 8 | ]; 9 | -------------------------------------------------------------------------------- /data/DominicFrei/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Super supportive", 3 | "description": "Dominic really adds value to the conversations and is super supportive of everyone in the community!", 4 | "date": "2023-03-05" 5 | } 6 | -------------------------------------------------------------------------------- /data/avie-dev/testimonials/tobySolutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tobiloba's Testimonial of Avie", 3 | "description": "Avie is such an amazing and wonderful public speaker, Developer and an icon!! Honestly.", 4 | "date": "2023-01-06" 5 | } 6 | -------------------------------------------------------------------------------- /data/runelk.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "runelk", 3 | "bio": "I'm a developer!", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/runelk/", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Shubham185y/testimonials/sahil-sagwekar2652.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hard working", 3 | "description": "Shubham is very persistent in what he does and has managed to complete every task which he has taken up.", 4 | "date": "2023-03-30" 5 | } 6 | -------------------------------------------------------------------------------- /data/mpotane/testimonials/jofftiquez.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hardworking Open Source Developer", 3 | "description": "A hardworking and smart member of OSSPH. Always active and adds great value to the community.", 4 | "date": "2023-01-12" 5 | } 6 | -------------------------------------------------------------------------------- /data/EddieHubCommunity/testimonials/LinuxGamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Amazing, Supporting Community", 3 | "description": "This community is amazing, supportive and helpful. They are the reason I got into Open Source.", 4 | "date": "2023-01-04" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/Srinja333.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "God Of Github", 3 | "description": "His videos and his guided path to becoming an open source pro are amazing. His is really a Messiah of all needy guys.", 4 | "date": "2023-03-14" 5 | } 6 | -------------------------------------------------------------------------------- /data/Husaintidiwala: -------------------------------------------------------------------------------- 1 | { 2 | "name": "husaintidiwala", 3 | "bio": "student", 4 | "links": [ 5 | { 6 | "name": "follow me on Github", 7 | "url": "https://github.com/Husaintidiwala", 8 | "icon": "fagithub" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /data/MhL5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mohammad Hosein Lashani", 3 | "bio": "a Passionate developer and tech enthusiast Constantly learning, building, and pushing 🙂", 4 | "links": [{ "name": "github","url": "https://github.com/MhL5","icon": "FaGithub" }] 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/priyankarpal.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "GOD of Open Source", 3 | "description": "I just wanna say thank you. I learned about Open Source, dev rel, and some cool things in 1st year of Engineering.", 4 | "date": "2023-01-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/sagarbangade.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Best Guru to learn about GitHub", 3 | "description": "Your Youtube Videos helps me a lot to learn about GitHub. Thanks for making such excellent videos.", 4 | "date": "2023-01-20" 5 | } 6 | -------------------------------------------------------------------------------- /data/mnvsk97.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mnvsk97", 3 | "bio": "Engineer who can't create UIs", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/mnvsk97", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/zheroin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ZEROtoHERO", 3 | "bio": "Full-stack software engineer", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/zheroin", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /tests/data/_test-profile-user-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test User Name 3", 3 | "bio": "Test user bio 3", 4 | 5 | "tags": ["test user 2 tag 1", "test user 2 tag 2"], 6 | "socials": [{ "icon": "FaTwitter", "url": "https://twitter.com/eddiejaoude" }] 7 | } 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Question? 4 | url: https://www.biodrop.io/docs/faqs 5 | about: If your question is not covered by the FAQs, please ask your question in our GitHub Discussions. 6 | -------------------------------------------------------------------------------- /data/Abhish7k.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abhishek", 3 | "bio": "Full Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Abhish7k", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Kanishk10k.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kanishk Gupta", 3 | "bio": "STUDENT", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/Kanishk10k", 8 | "icon": "Capital A" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Ritisha542.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ritisha Sen", 3 | "bio": "CS Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/Ritisha542", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/cheehieu/testimonials/cheehieu.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Mediocre", 3 | "description": "I've known this guy for years. Very average. Has a face for radio... and a voice for newspaper. He's impossible to underestimate, though.", 4 | "date": "2023-04-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/devashizh.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Devashish", 3 | "bio": "Starry Eyed", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/devashizh", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/raghu-007/testimonials/raghu-007.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tech Entrepreneur", 3 | "description": "Currently learning ai and pursuing my masters in ai, and working as DevOps intern, Going to start my startup in coming years.", 4 | "date": "2023-03-02" 5 | } 6 | -------------------------------------------------------------------------------- /data/Jkudjo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Philip Kumah JR", 3 | "bio": "Devops Guy", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/KOJOskillions", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Kzoeps.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Karma Zoepa Yoezer", 3 | "bio": "tryna hack into everything", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/kzoeps", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Skagra42.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flynn Salbenblatt", 3 | "bio": "Computer Science student.", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/Skagra42", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/avie-dev/testimonials/mpotane.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Filipino Represents 🫡", 3 | "description": "🌈🌟⛩Avie is a well-known tech influencer from the Philippines. She is involved in communities and is always cheerful and upbeat.", 4 | "date": "2023-01-12" 5 | } 6 | -------------------------------------------------------------------------------- /data/harohar13.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Harohar", 3 | "bio": "Software engineer,writer", 4 | "links": [ 5 | { 6 | "name": "Follow me on github", 7 | "url": "https://github.com/harohar13", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/jiafie7.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gafield Zhang", 3 | "bio": "Image Processing • Machine Learning", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/jiafie7", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/vishal206.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vishal R", 3 | "bio": "Android Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/vishalr206", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/HIMANSHIKSHARMA.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Himanshi Sharma", 3 | "bio": "Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/coderkiddo", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/TusharAgarwal18.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tushar Agarwal", 3 | "bio": "Programmer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/TusharAgarwal18", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/jossse69.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "josé luiz", 3 | "bio": "a newcomer-ish to open source", 4 | "links": [ 5 | { 6 | "name": "My Twitter!", 7 | "url": "https://twitter.com/unjoseluiz", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/konpal-sharma.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Konpal Sharma ", 3 | "bio": "CS student", 4 | "Links": [ 5 | { 6 | "name": "Follow me on github", 7 | "url": "https://github.com/konpal-sharma", 8 | "icon": "FaGitHub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/shubhsh19.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shubh Sharma", 3 | "bio": "Frontend + Devops", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/shubhstwt", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /stories/components/navbar/Navbar.stories: -------------------------------------------------------------------------------- 1 | /* Temporarily disabled due to issues with @tomfreudenberg/next-auth-mock/storybook */ 2 | import Navbar from "@components/navbar/Navbar"; 3 | 4 | export default { 5 | component: Navbar, 6 | }; 7 | 8 | export const Basic = {}; 9 | -------------------------------------------------------------------------------- /data/AkshayAwate.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Akshay Awate", 3 | "bio": "Cloud Native Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/AkshayAwate", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/JulieB16.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Julie Belfor", 3 | "bio": "High School Student | Frontend Developer", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/JulieB16", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/VinsonSamuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vinson Samuel", 3 | "bio": "Software Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/vinsonsamuel", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/bhawanak0504.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bhawana0504", 3 | "bio": "open source community", 4 | "links": [ 5 | { 6 | "name": "Follow me on github", 7 | "url": "https://github.com/bhawana0504", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/curi-adi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aditya Shrivastava", 3 | "bio": "IT professional", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/AadiDreamer23", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/dikshitasharma.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dikshita Sharmae", 3 | "bio": "Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on Instagram", 7 | "url": "https://instagram.com/disha1548", 8 | "icon": "Fadisha1548" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/donlouie.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Louie", 3 | "bio": "Web Developer, Exploring Open Source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/donlouie", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/its-kunal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kunal Agrawal", 3 | "bio": "Web Developer | MERN Stack", 4 | "links": [ 5 | { 6 | "name": "Follow on Twitter", 7 | "url": "https://twitter.com/KunalPy3", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/pulkitbhargava.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pulkit Bhargava", 3 | "bio": "MERN stack developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Pulkit007", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/taravis.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anu Wat", 3 | "bio": "Web Dev | Interactive Media Dev", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/anuwatavis", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/tusharsinghrawat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tusharsinghrawat", 3 | "bio": "CS STUDENT", 4 | "links": [ 5 | { 6 | "name": "Follow me on github", 7 | "url": "https://github.com/tusharsinghrawat", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Akash3121.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Akash Reddy Jammula", 3 | "bio": "Open source enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/Akash3121", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Landouda.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Landouda", 3 | "bio": " I am a software engineering student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Landouda", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Mitvesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mitvesh Ameta", 3 | "bio": "computer science student", 4 | "link": [ 5 | { 6 | "name": "follow me on instagram", 7 | "url": "https://www.instagram.com/mitvesh_/", 8 | "icon": "instagram" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Pratikkumare.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pratik Kumare", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Pratikkumare", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/adityasp1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aditya Rawat", 3 | "bio": "Learner getting into Open Source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/adityasp1", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/arijit-pal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arijit Pal", 3 | "bio": "Masters in Tech. Yoga enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/aripaljit", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/jennifer-pecky.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jennifer pecky", 3 | "bio": "Front-end developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/pecky_jennifer", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/philling1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Phil", 3 | "bio": "Software engineer getting into Open Source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/philling1", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ryan-broguiere.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ryan Broguiere", 3 | "bio": "Software Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/ryan-broguiere", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ApurvaBasule.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Apurva Basule", 3 | "bio": "i am a fullstack developer", 4 | "links": [ 5 | { 6 | "name": "follow me on twitter", 7 | "url": "https://twitter.com/ApurvaBaule", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Chavda-Mitul.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mitul Chavda", 3 | "bio": "Hey I am Fullstack developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/mitul_tweets", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/KaushikKundu.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kaushik Kundu", 3 | "bio": "Aspiring software engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Kaushik_901", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Manishku0722.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Manish Kumar", 3 | "bio": "Aspiring Software Engineering", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/manishku0722", 8 | "icon": "FaGitHub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/MadhuSaini22.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "He's super supportive", 3 | "description": "I noticed, Pradumna is working so hard and he's always so supportive in the community. He provides valuable content, which is just awesome!!", 4 | "date": "2023-01-05" 5 | } 6 | -------------------------------------------------------------------------------- /data/althios.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ivan Avila", 3 | "bio": "unemployed but smart enough to create apple 2", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/althios", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/homelyseven250.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "homelyseven250", 3 | "bio": "Idiot **turned** coder?", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/homelyseven250", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ibilalkayy/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Super supportive", 3 | "description": "Bilal is always super supportive of everyone in the community! They also create great content on DevOps and Open Source, go check out their content.", 4 | "date": "2023-01-18" 5 | } 6 | -------------------------------------------------------------------------------- /data/sohamsattigeri.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Soham Sattigeri", 3 | "bio": "A newbie to open-source :)", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Soham041201", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/AliReza1083/testimonials/cjayjonathan.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Legitimately Inspiring", 3 | "description": "I have been following Ali Reza's Twitter and it has been nothing short of endless content. His willingness to provide a helping hand stands out.", 4 | "date": "2023-01-07" 5 | } 6 | -------------------------------------------------------------------------------- /data/Arshdeep-0509.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arshdeep Singh", 3 | "bio": "MERN stack developer || Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Arshdeep-0509", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Honey171.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mehmet Taha Baloglu", 3 | "bio": "Nurse turned front-end developer. Also a gym rat", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/Honey171/", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/IsaamAkhtar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Isaam Akhtar", 3 | "bio": "UWB Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/isaam-akhtar-364158263/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/NiikNiik.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Niko Ajani", 3 | "bio": "Civil Engineer turned Full Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Add me on Linkedin", 7 | "url": "www.linkedin.com/in/niko-ajani", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/SwapnilPatle01.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Swapnil Patle", 3 | "bio": "Frontend Developer,Youtuber", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/SwapnilPatle01", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Tharun-Akuthota.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tharun Akuthota", 3 | "bio": "I am an IT undergraduate", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/tharunakuthota", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/arefathi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arefat", 3 | "bio": "Developer | Blogger | Crypto Enthusiast | Reader", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/arefathi", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/orunto.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Orunto Eniola", 3 | "bio": "Tech bro in transit", 4 | "links": [ 5 | { 6 | "group": "Portfolio", 7 | "name": "My Website", 8 | "url": "http://orunto-dot-dev.vercel.app", 9 | "icon": "FaLink" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /data/pradhuman09.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pradhuman Singh Chaudhary", 3 | "bio": "this is my personal project", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/pradhuman09", 8 | "icon": "FagitHub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/rishabhsinghal.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rishabh Singhal", 3 | "bio": "Computer Science Student @ IIIT H", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/rish-singhal", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Lakshya-bhavsar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lakshya Bhavsar", 3 | "bio": "Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/lakshya-bhavsar-694a03250", 8 | "icon": "FaLinkedIn" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Panquesito7/testimonials/YashDaga17.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Testimonial", 3 | "description": "David is really helpful.😌\r\nHe is very nice and friendly. 💕\r\nHe works very hard with his projects to make it successful.\r\nGlad to know a person like David 🤗", 4 | "date": "2023-03-03" 5 | } 6 | -------------------------------------------------------------------------------- /data/VikeCode.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "VikeCode", 3 | 4 | "bio": "Native Android Developer ", 5 | 6 | "links": [ 7 | { 8 | "name": "Follow me on Twitter", 9 | 10 | "url": "https://twitter.com/vikecode", 11 | 12 | "icon": "FaTwitter" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /data/VittorOlliveira/testimonials/daniel-jp.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Exceptional Dev", 3 | "description": "Daniel is an exceptional Dev. freelancer with a deep understanding of cloud-native open-source technologies, DevOps practices, and networking principles.", 4 | "date": "2023-01-23" 5 | } 6 | -------------------------------------------------------------------------------- /data/avidcoder101.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AvidCoder101", 3 | "bio": "Helping Open Source | Coding Developer!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/AvidCoder101", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/nitishkumar07.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nitishkumar J G", 3 | "bio": "Student @ RNSIT", 4 | "links": [ 5 | { 6 | "name": "Connect with me on Linkedin", 7 | "url": "https://www.linkedin.com/in/nitishkumarjg/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/shubhalgupta.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shubhal Gupta", 3 | "bio": "Front-end developer ", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/shubhal-guptacreator/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Aadarsh805/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open Source", 3 | "description": "Great Open Source collaborator and helping get more people into Open Source! Thanks Aadarsh for the support in EddieHub and for reviewing so many LinkFree pull requests!", 4 | "date": "2023-01-19" 5 | } 6 | -------------------------------------------------------------------------------- /data/SahilSinghTomar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sahil Singh Tomar", 3 | "bio": "Learning Full Stack development", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/SahilSinghTomar", 8 | "icon": "FaGithubAlt" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ZaidKhan2002.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zaid Khan", 3 | "bio": "Learning Web development and exploring Open Source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/ZaidKhan2002", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ibilalkayy/testimonials/hola-soy-milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "A rare inspiration of a human being", 3 | "description": "One of my favourite things about Bilal is how he shares every step of the way, and is eager to receive and act upon feedback. Thanks, Bilal!", 4 | "date": "2023-01-18" 5 | } 6 | -------------------------------------------------------------------------------- /data/infotheharshit.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Harshit Sharma", 3 | "bio": "java || DSA || Web Development || C ", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/HARSHIT18912409", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/itsbhavsagar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bhavsagar Chaudhary", 3 | "bio": "Front End developer, learning opensource.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/itsbhavsagar", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/jessiebelle.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jessie Auguste", 3 | "bio": "Software Engineer getting into Open Source! ", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/jessiebelle", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/juliafmorgado/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Gets things done", 3 | "description": "Julia is great at bringing the energy and getting things done! This is super important and refreshing to see. It will be great to see what Julia creates in 2023", 4 | "date": "2023-01-03" 5 | } 6 | -------------------------------------------------------------------------------- /data/mrunlikeliest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shubham Santosh Upadhyay", 3 | "bio": "Aspiring Security Engineer", 4 | "links": [ 5 | { 6 | "name": "My Linkedin", 7 | "url": "https://www.linkedin.com/in/ssupadhyay018/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/njolipatrick.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Njoli Patrick", 3 | "bio": "Software Engineer intrested in building complex systems", 4 | "links": [ 5 | { 6 | "name": "Follow me on X", 7 | "url": "https://x.com/njolipatrick", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ragibajmal3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ragib Ajmal", 3 | "bio": "I am Ragib Ajmal, Associate Developer at Accenture", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/RagibAjmal", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/sfolador.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Simone Folador", 3 | "bio": "Web developer, **Laravel** and **TDD** enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/sfolador", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /components/mdx/BlockQuote.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const BlockQuote = ({ children }) => { 4 | return ( 5 |
    6 | {children} 7 |
    8 | ); 9 | }; 10 | 11 | export default BlockQuote; 12 | -------------------------------------------------------------------------------- /data/AniketNS.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aniket Shitole", 3 | "bio": "DevOps and OpenSource enthusiast, Reader, Thriller", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/AniketNShitole", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Haile-08.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Haile Melaku", 3 | "bio": "a cse student that is learing backend developemnt", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Haile09774574", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Kritipatwa16.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kriti patwa", 3 | "bio": "college student pursuing btech in cse ", 4 | "links": [ 5 | { 6 | "name": "Follow me on instagram", 7 | "url": "https://instagram.com/kritipatwa15038", 8 | "icon": "Fainstagram" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Pushkar-Gameti.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pushkar Gameti", 3 | "bio": "Computer science student.", 4 | "link": [ 5 | { 6 | " name": "Follow me on Instagram", 7 | " url": "https://www.instagram.com/innocent__pushkar/?hl=en", 8 | "icon": "Instagram" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/dsjoench.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Joseph Ng", 3 | "bio": "a software engineer with a strong background in data science", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/dsjoench", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/rodgersgitau.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rodgers Gitau", 3 | "bio": "Tinkerer by design, hermit by choice & software engineer by trade", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github/rodgersgitau", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/AashishKr27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ashish Kumar", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Linkedin", 7 | "url": "https://www.linkedin.com/in/ashish-kumar-3a692b2b4/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/EddieHubCommunity/testimonials/loftwah.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Best open source community", 3 | "description": "I found EddieHub while trying to find a job after being let go and I found the community to be very welcoming and ever since my career has gone into overdrive.", 4 | "date": "2023-01-04" 5 | } 6 | -------------------------------------------------------------------------------- /data/SK-x7.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aastha dakhera", 3 | "bio": "2nd year cs student,tech enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on linkedin", 7 | "url": "https://www.linkedin.com/in/satyen-kharadi-60316b224", 8 | "icon": "FaLinkedIn" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/UVSali.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mohd Uvais Ali Khan", 3 | "bio": "Backend developer enthusiast for OpenSource contributions", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/uvaisalik", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/dhruvabhat24/testimonials/Abiji-2020.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Contributors", 3 | "description": "The user and I are sharing the daily updates for the leetcode solutions which is more useful for us and this user has active account. The connection with this user is also in good", 4 | "date": "2024-01-15" 5 | } -------------------------------------------------------------------------------- /data/hakkanoodles.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rohit Prakash", 3 | "bio": "FrontEnd developer, discovering Open source contributions", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/_waasp_", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/joelkabamba/testimonials/daniel-jp.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Good Spring Boot Dev", 3 | "description": "I know Daniel, is the one good Spring. boot Dev that I knew and resilient developer with coding skills. Daniel has so much energy when it comes to delivering scalable.", 4 | "date": "2023-01-23" 5 | } 6 | -------------------------------------------------------------------------------- /data/jofftiquez/testimonials/mpotane.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Leader of Open Source Philippines 👑.", 3 | "description": "✨Many young aspiring developers, including myself, were inspired by his dedication, passion, and humility. An icon in the Philippine developer community. 🫶", 4 | "date": "2023-01-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/Sanmindaniels07/testimonials/Sanmidaniels07.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Linkfree benefit", 3 | "description": "Linkfree Shorten your URLs, create custom bio links pages and QR Codes. All with an advanced analysis of your visitors. All with an advanced analysis of your visitors.", 4 | "date": "2023-06-02" 5 | } 6 | -------------------------------------------------------------------------------- /data/nithin999989.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nithin", 3 | "bio": "Dev **Digital Nomad**. Travel enthusiast Yoga & Peloton aficionado", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Rrrtyiopuio", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/spy-1234.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Janmejai Singh", 3 | "bio": "Student and doing web development stuffs and competitive programming", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/spy-1234", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/AasthaDakhera.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aastha Dakhera", 3 | "bio": "2nd year CS student. Tech enthusiast ", 4 | "links": [ 5 | { 6 | "name": "Follow me on Linkedin", 7 | "url": "https://www.linkedin.com/in/aastha-dakhera-42015b227", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Divyanshu212.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Divyanshu Sharma", 3 | "bio": " Youtuber. Software Engineer. Web devlopment. editor.", 4 | "links": [ 5 | { 6 | "name": "Subscribe me on youtube", 7 | "url": "https://youtube.com/@Mxicogaming212", 8 | "icon": "Youtube" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Sugamgoel28.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sugam Goel", 3 | "bio": "A passionate tech enthusiastic and learner.", 4 | "links": [ 5 | { 6 | "name": "Connect with me on **LinkedIn**", 7 | "url": "https://www.linkedin.com/in/sugam-goel-india", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/amanGit010.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Amanjot Singh", 3 | "bio": "I love open-source and love to learn new things whenever possible :)", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/amanGit010", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/ayodejiades.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ayodeji Adesegun", 3 | "bio": "Software Engineer", 4 | "links": [ 5 | { 6 | "group": "Socials Primary", 7 | "name": "LinkedIn: Connect with me", 8 | "url": "http://linkedin.com/in/ayodejiades", 9 | "icon": "FaLink" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /data/krishnanunnijs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Krishnan Unni", 3 | "bio": "Software Engineer | Coffee Lover | Globetrotter", 4 | "links": [ 5 | { 6 | "name": "LinkedIn: Let's connect", 7 | "url": "https://www.linkedin.com/in/krishnanunnijs/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/nfa1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nilo Alvarado", 3 | "bio": "Software Engineering | Data Science | Python | SQL | R | HTML | CSS | JavaScript", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/nfa1", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/obaidashfaq20.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Obaid Ashfaq", 3 | "bio": "a Ruby developer who is enthusiastic about writing clean code", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/obaidashfaq20", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/LinuxGamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Amazing Teacher", 3 | "description": "Whilst Francesco is streaming his learning of any language or topic, it allows others to learn alongside him, a great teacher and a great content creator. Also created a good community (4C).", 4 | "date": "2023-01-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Always super helpful", 3 | "description": "Pradumna always provides value and support to everyone in the community, on GitHub and Discord especially in the DevOps space. Also Pradumna consistently creates helpful content!", 4 | "date": "2023-01-03" 5 | } 6 | -------------------------------------------------------------------------------- /data/Swapnil-11-04-01.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Swapnil Sharma", 3 | "bio": "Loves the NATURE, and Loving in NATURE", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/swapnil-sharma-a99ba3189/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/avie-dev/testimonials/Spiritdivine.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Motivator", 3 | "description": "Avie has been of great motivation in the area of networking especially around the tech Twitter community. Her Twitter spaces provides a platform for people to speak regardless of what race one is.", 4 | "date": "2023-01-08" 5 | } 6 | -------------------------------------------------------------------------------- /data/avisek85.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "avisek85", 3 | "bio": "undergraduate student ,passionate for learning new skills", 4 | "location": "India", 5 | "links": [ 6 | { 7 | "name": "Follow me on Linkedin", 8 | "url": "https://www.linkedin.com/in/abhishek-singh-185861267" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/imran1509/testimonials/gagan-baghel.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "FIRST_INTERACTION", 3 | "description": "he was so humble and steady throughout the interaction\r\nguided me to start learning online and make a twitter account for more exposure \r\n& get to know about an overview of devOps.", 4 | "date": "2023-01-30" 5 | } 6 | -------------------------------------------------------------------------------- /data/jainankit0811.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ankit Dhanawat", 3 | "bio": "I am a student currently studing computer science and engineering", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/jainankit0811", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/marlonaesparza.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Marlon Esparza", 3 | "bio": "Full-time Customer Support Technician at NetFile, and full-stack developer.", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/mindofmarlon_", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/samchan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sam Chan", 3 | "bio": "Full stack Developer || Open source enthusiast || Polyglot || Life long learner", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/samchan2022", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/samil-web.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shamil Aliyev", 3 | "bio": "Engineer turned into Programmer. In a journey to make remarkable things", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/AlieffShamil", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /config/stripe.js: -------------------------------------------------------------------------------- 1 | import Stripe from "stripe"; 2 | 3 | import { serverEnv } from "@config/schemas/serverSchema"; 4 | 5 | const stripe = () => { 6 | const stripe = new Stripe(serverEnv.STRIPE_SECRET_KEY, { 7 | apiVersion: "2020-08-27", 8 | }); 9 | 10 | return stripe; 11 | }; 12 | 13 | export default stripe(); 14 | -------------------------------------------------------------------------------- /data/DaduDev/testimonials/DaduDev.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "CS student", 3 | "description": "I'm just a student who just started with open source and it feels great and I really feel like I'm a real world developer after working on some great open source projects. I really loved link free project.", 4 | "date": "2023-02-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/Dun-sin.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Francesco: The king of consistency", 3 | "description": "Knowing Francesco has been a blessing, he's such an amazing guy who does a lot for the tech community. He has a spirit of not giving up (which makes him the king of consistency).", 4 | "date": "2023-01-27" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/devvsakib.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Francesco the ultimate guy", 3 | "description": "Francesco, a content creator, is such an amazing person with excellent skills and abilities. He is a very friendly, hard-working, and open-minded person. He is an inspiration to me.", 4 | "date": "2023-01-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/eddiejaoude.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Super supportive", 3 | "description": "Francesco makes amazing content and also supports so many people. The truth is, Francesco is going very far and he is taking everyone with him to the finish line - we can all succeed together!", 4 | "date": "2023-01-27" 5 | } 6 | -------------------------------------------------------------------------------- /data/Quarkyy77.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Quarkyy77", 3 | "bio": "Starting on a open source journey , would be updating bio soon...", 4 | "links": [ 5 | { 6 | "name": "Follow me onLinkedIn", 7 | "url": "https://www.linkedin.com/in/tushar-kumar-xckecn", 8 | "icon": "LinkedIn" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/RJPalmer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Robert Palmer", 3 | "bio": "Tech Support and Customer Service Rep switching over to the development side.", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/whoyoumagoo", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/niwei822.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Niwei Li", 3 | "bio": "A former accountant turned software engineer interested in full stack web development.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/niwei822", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/AasthaShahCodes/testimonials/tobySolutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Tobiloba's Testimonial of Aastha", 3 | "description": "Aastha is a very diligent and hardworking individual. I've only knon her for a couple of weeks and I see the qualities of a good Software engineer with great potential in her.", 4 | "date": "2023-01-09" 5 | } 6 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/iam-Rps.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "That DevOps Guy ", 3 | "description": "**Pradumna is Amazing **\n\nHe is source of learning for many beginners developers \r\nB\r\nPradumna is a highly skilled developer, an active open-source contributor, and also a great communicator", 4 | "date": "2023-06-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/xkrishguptaa.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "God of OSS", 3 | "description": "As I like to say, Eddie is the god of open source and community. Eddie is the best and devrel and content creation 😍 Eddie's mentoring via their Twitter and Github is such a good addition to my life", 4 | "date": "2023-01-10" 5 | } 6 | -------------------------------------------------------------------------------- /data/ikembakwem.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ikechukwu Mbakwem", 3 | "bio": "Programmer and part-time video editor. I also play the Keyboard, the Piano LOL", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/ikembakwem", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/lvnilesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LV Nilesh", 3 | "bio": "IAS Topper *turned* Microsoft Product Builder *turned* Entrepreneur, Founder, Cloud Genius®", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/LVNilesh", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Badr281/testimonials/daniel-jp.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "He is very serious at work", 3 | "description": "Daniel, we already had together in one of the projects at the end of the course, in addition to being very outgoing, he also doesn't forget when the work needs a lot of commitment and seriousness.", 4 | "date": "2023-01-24" 5 | } 6 | -------------------------------------------------------------------------------- /data/MahabubArafat.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mahabub Arafat", 3 | "bio": "Mechanical Engineer by institutional qualification. Software Engineer by Choice.", 4 | "links": [ 5 | { 6 | "name": "My twitter Handle", 7 | "url": "https://twitter.com/MahabubArafat_", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/allexgut.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Alexander Dimitrov", 3 | "bio": "Web Developer looking to contribute to open source projects in my free time. :)", 4 | "links": [ 5 | { 6 | "name": "Check out my GitHub account", 7 | "url": "https://github.com/allexgut", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/deepak039543.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RAM JI MISHRA", 3 | "bio": "I am a 2nd Year student of RAI UNIVERSITY.I like to contribute in Open Source Projects.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GITHUB", 7 | "url": "https://github.com/deepak039543", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/kahmed-stack.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kazi Shafaet Ahmed", 3 | "bio": "Open Source Intern at Tublian, Aspiring Full Stack Dev", 4 | "links": [ 5 | { 6 | "name": "Connect Me on Linkedin", 7 | "url": "https://www.linkedin.com/in/kazi-s-ahmed-34a451107/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/karthiknadar1204.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Karthik Nadar", 3 | "bio": "I am a full stack developer ,I enjoy working and collabrating over projects.", 4 | "links": [ 5 | { 6 | "name": "Follow me on github", 7 | "url": "https://github.com/karthiknadar1204", 8 | "icon": "FaGithubAlt" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/mctilde.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mctilde", 3 | "bio": "I'm a persevering frontend developer, passionate about creating intuitive and attractive interfaces.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/mctilde", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/sharipoff-0-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shakhzod Shariov", 3 | "bio": "Front end developer, healthy life style, cooking enthusiast casual reader", 4 | "links": [ 5 | { 6 | "name": "Follow me on Instagram", 7 | "url": "https://twitter.com/sharipoff.shakh", 8 | "icon": "FaInstagram" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/tsipporahc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tsipporah Christopher", 3 | "bio": "Teacher turned **Software Engineer**, World Traveler, Meditation Podcast Host", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/tsipporahc", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/vanshiz.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vanshika Bhargava", 3 | "bio": "A sophomore student studying Btech in Computer Science", 4 | "links": [ 5 | { 6 | "name": "Follow me on Instagram", 7 | "url": "https://www.instagram.com/vanshikabhargavaa/", 8 | "icon": "FaInstagram" 9 | } 10 | ] 11 | } 12 | 13 | 14 | -------------------------------------------------------------------------------- /data/zakafan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zakaria EL Yousfi", 3 | "bio": "Software Engineering Stuedent at ENSAF.Footbal lover always a culer.", 4 | "links": [ 5 | { 6 | "name": "Follow me on Instagram", 7 | "url": "https://www.instagram.com/zakaria.elyousfi88/", 8 | "icon": "FaInstagram" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/qaidjoharj53/testimonials/qaidjoharj53.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Dedicated & Committed", 3 | "description": "Qaidjohar is a very DEDICATED man in his field and too COMMITTED to his work.\r\nHe knows exactly what PUNCTUALITY means and always maintains it in his habit.\r\nHis WORK sounds as UNIQUE as his name.", 4 | "date": "2023-04-29" 5 | } 6 | -------------------------------------------------------------------------------- /data/xkrishguptaa/testimonials/LinuxGamer.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Wonderfully Helpful and Amazing", 3 | "description": "Krish is a very polite person who strives when helping others, and is generally a **wonderful and amazing** human being. :) A **huge** part of the EddieHub Community and the Open Source World.", 4 | "date": "2023-01-14" 5 | } 6 | -------------------------------------------------------------------------------- /data/EddieHubCommunity/testimonials/priyankarpal.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "My favourite Open Source Community", 3 | "description": "This is the place where I started learning Open Source contributions, I also added my code to LinkFree. I highly recommend students join this community, you will gain so much knowledge.", 4 | "date": "2023-02-18" 5 | } 6 | -------------------------------------------------------------------------------- /data/Satyxm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Satyam Singh", 3 | "bio": "Learning New Tech Stacks and love contributing to the Open Source and learn by contributing. Evolving!", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/satyamtwts", 8 | "icon": "SiTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/iAnonymous3000/testimonials/nicfab.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "High qualified cybersecurity professional", 3 | "description": "I had the opportunity to share and discuss some aspects of cybersecurity with Sooraj, and he demonstrated competence and was a highly qualified cybersecurity professional and evangelist.", 4 | "date": "2023-09-23" 5 | } 6 | -------------------------------------------------------------------------------- /data/raviraj-github/testimonials/xkrishguptaa.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Experience Solutions Architect with Great Advice", 3 | "description": "They are an amazing solutions architect, who is always up for sharing advice and tips for people in the community. Their contributions to open source are super valuable too!", 4 | "date": "2023-09-01" 5 | } 6 | -------------------------------------------------------------------------------- /data/sachindevs.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sachin Choube", 3 | "bio": "Dev person love to ** Learn and Share **. if not technical then Spend time with loved ones", 4 | "links": [ 5 | { 6 | "name": "Follow me on Linkedin", 7 | "url": "https://www.linkedin.com/in/choube", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/tobySolutions/testimonials/MadhuSaini22.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Hard Working person", 3 | "description": "I meet Tobiloba while collaborating with 4C, he's very supportive and hard working person. He's maintaining 4C website so nicely, supporting newbies, and always shows interest in every sub domains of tech.", 4 | "date": "2023-01-06" 5 | } 6 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "git": { 3 | "deploymentEnabled": false 4 | }, 5 | "crons": [ 6 | { 7 | "path": "/api/system/stats", 8 | "schedule": "0 0 * * *" 9 | }, 10 | { 11 | "path": "/api/system/github", 12 | "schedule": "0 8 * * *" 13 | } 14 | ], 15 | "installCommand": "npm ci --omit=dev" 16 | } 17 | -------------------------------------------------------------------------------- /data/254guru.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kevin Oluda", 3 | "bio": "Software engineer | Open Source DevRel | Fullstack developer", 4 | "links": [ 5 | { 6 | "group": "Socials Primary", 7 | "name": "Twitter: Follow me", 8 | "icon": "FaTwitter", 9 | "color": "#00ACEE", 10 | "url": "https://twitter.com/oluda_kevin" 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /data/AliMora83/testimonials/yi-lin-1234.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "chingu project testimonial", 3 | "description": "I've learned so much during this project, and I'm truly thankful. I want to give a special shout-out to Ali. Your time and hard work really made a difference and helped our project succeed. Thanks a lot, Ali!", 4 | "date": "2023-07-20" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/oyenolaphilipinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Amazing Leader and mentor", 3 | "description": "Francesco is a great mentor, leader and role model in the tech space. His unbeatable contributions in open source makes him an outstanding person and also a great leader in the open source and tech space.", 4 | "date": "2023-02-09" 5 | } 6 | -------------------------------------------------------------------------------- /data/thunderbirdceg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gokulnath Panneerselvam", 3 | "bio": "Software developer with Cloud knowledge looking for remote roles", 4 | "links": [ 5 | { 6 | "name": "Follow me on Linkedin", 7 | "url": "www.linkedin.com/in/gokulnath-panneerselvam-20062619", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | LABEL org.opencontainers.image.source https://github.com/eddiehubcommunity/BioDrop 3 | WORKDIR /usr/src/app 4 | 5 | COPY package*.json ./ 6 | RUN npm ci --omit=dev --ignore-scripts 7 | COPY . . 8 | 9 | RUN --mount=type=secret,id=MONGO,target=./.env npm run build 10 | 11 | RUN npm run build 12 | 13 | CMD ["npm", "start"] 14 | -------------------------------------------------------------------------------- /data/Adebaicy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Oluwapelumi Adejumo", 3 | "bio": "Student frontend developer. Problem Solving enthusiast. Exploring Open Source", 4 | "links": [ 5 | { 6 | "name": "See my tweets", 7 | "url": "https://twitter.com/Adebaicy", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/LVSMix.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Luis Ventocilla", 3 | "bio": "JUG leader @javabsas. Backend Engineer. Me apasiona las tecnologias backend y el desarrollo en varias plataformas.", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/lvsmix", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Mykelz.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Obianuka Micheal Eze", 3 | "bio": "NodeJS backend Developer | **GitHub** Star", 4 | "links": [ 5 | { 6 | "group": "Socials", 7 | "name": "LinkedIn: Connect with me", 8 | "url": "https://www.linkedin.com/in/obianuka-micheal-12201419a/", 9 | "icon": "Falinkedin" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /data/kush6291.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kushagra Chavan (Test)", 3 | "bio": "I am a DevOps Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on twitter", 7 | "url": "https://twitter.com/Kush6291" 8 | }, 9 | { 10 | "name": "Follow me on github", 11 | "url": "https://github.com/kush6291" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /data/vemuladinesh25082002.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vemula Dinesh", 3 | "bio": "I am a NIT Bopal Student", 4 | "links": [ 5 | { 6 | "group": "Business", 7 | "name": "Linkedin", 8 | "url": "https://www.linkedin.com/in/vemula-dinesh/", 9 | "icon": "FaLinkedin" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@components/*": ["components/*"], 6 | "@config/*": ["config/*"], 7 | "@services/*": ["services/*"], 8 | "@models/*": ["models/*"], 9 | "@constants/*": ["constants/*"], 10 | "@public/*": ["public/*"] 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /.github/config/labeler.yml: -------------------------------------------------------------------------------- 1 | "✍ chore: profile": 2 | - "data/**" 3 | 4 | "invalid": 5 | - "data/**" 6 | 7 | tests: 8 | - "tests/**" 9 | 10 | storybook: 11 | - "stories/**" 12 | 13 | dependencies: 14 | - "package.*" 15 | 16 | "CI/CD": 17 | - ".github/**" 18 | 19 | "📖 docs": 20 | - "pages/docs/**" 21 | 22 | "models": 23 | - "models/**" 24 | -------------------------------------------------------------------------------- /data/Freedteck.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mubarak Olanrewaju", 3 | "bio": "Open Source Contributor | Frontend Developer and Student", 4 | "links": [ 5 | { 6 | "group": "Social", 7 | "name": "Linkedin: Linkedin profile", 8 | "url": "https://www.linkedin.com/in/mubarak-olanrewaju/", 9 | "icon": "FaLink" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /data/Proyecto-IntegrAccion.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Proyecto IntegrAcción", 3 | "bio": "un proyecto de cooperación entre la Universidad Católica San Pablo y ACNUR", 4 | "links": [ 5 | { 6 | "name": "Síguenos en Facebook", 7 | "url": "https://www.facebook.com/ProyectoIntegrAccion1", 8 | "icon": "FaFacebook" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/Sunil8wale.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sunil Athawale", 3 | "bio": "Open Source Enthusiast, Front-End Developer", 4 | "socials": [ 5 | { 6 | "url": "https://twitter.com/sunilathawale10", 7 | "icon": "FaTwitter" 8 | }, 9 | { 10 | "url": "https://github.com/Sunil8wale", 11 | "icon": "FaGithub" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/ZeeMonk-pixel.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open Source Advocate", 3 | "description": "Eddie is a big name in Open source, he has sparked the interest for open source in a lot of people, myself inclusive. I recommend Eddie for anyone looking to have an easy, smooth and amazing experience with open source", 4 | "date": "2022-11-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/Arindam200/testimonials/Malavi1.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Helping Hand", 3 | "description": "We **DO** meet many people in life and especially in social media the number is countless. I reached out him through hacktoberfest helped and guided me to make my first **PR**. He is my first helping hand in opensource.Thank you Arindam!!!!", 4 | "date": "2023-01-29" 5 | } 6 | -------------------------------------------------------------------------------- /data/juliafmorgado/testimonials/payalpm.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Testimonial for Julia frust morgado", 3 | "description": "Julia's dedication to sharing her knowledge and expertise is truly inspiring. She is a valuable resource for anyone looking to improve their skills in DevOps and Cloud Native technologies, and I highly recommend her.", 4 | "date": "2023-01-05" 5 | } 6 | -------------------------------------------------------------------------------- /data/tobySolutions/testimonials/oyenolaphilipinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Great Individual and Programmer", 3 | "description": "Tobi is a great individual working very hard in the open source space. He has been actively maintaining popular open source project. He is a unique individual and with him your team and company is soaring higher", 4 | "date": "2023-02-08" 5 | } 6 | -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- 1 | const PROJECT_NAME = "BioDrop"; 2 | 3 | const BASE_WEBSITE_URL = "https://biodrop.io/"; 4 | const BASE_GITHUB_URL = "https://github.com/EddieHubCommunity"; 5 | const BASE_GITHUB_PROJECT_URL = BASE_GITHUB_URL + "/BioDrop"; 6 | 7 | export { 8 | PROJECT_NAME, 9 | BASE_WEBSITE_URL, 10 | BASE_GITHUB_URL, 11 | BASE_GITHUB_PROJECT_URL, 12 | }; 13 | -------------------------------------------------------------------------------- /data/ALIPHATICHYD.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Fuad ALIPHATIC", 3 | "bio": "Software Engineer | Product Manager | Public Speaker", 4 | "links": [ 5 | { 6 | "group": "Socials Primary", 7 | "name": "Twitter: Follow me", 8 | "url": "https://twitter.com/ALIPHATICHYD", 9 | "icon": "FaTwitter", 10 | "color": "#00ACEE" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /data/DeepanshuRohilla15.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Deepanshu Rohilla", 3 | "bio": "Open Source Developer, DevOps", 4 | "tags": ["DevOps", "Open Source", "Web Developer", "Android Developer"], 5 | "links": [ 6 | { 7 | "name": "Follow me on Twitter", 8 | "url": "https://twitter.com/dr1588566", 9 | "icon": "FaTwitter" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /data/EmmanuelAjibokun.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Emmanuel Ajibokun", 3 | "bio": "Open Source Contributor || React Developer", 4 | "links": [ 5 | { 6 | "group": "Socials Primary", 7 | "name": "Twitter: Follow me", 8 | "url": "https://twitter.com/meet_manny", 9 | "icon": "FaTwitter", 10 | "color": "#00ACEE" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /data/Ketankham.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ketan Khamgaonkar", 3 | "bio": "A research scholar turned no code developer, machine learning enthusiast and looking to make open source contributions", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/KKhamgaonkar", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/abdqudus.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abdqudus Gbadamosi", 3 | "bio": "Open Source Enthusiast| Frontend Developer", 4 | "socials": [ 5 | { 6 | "icon": "FaLinkedin", 7 | "url": "http://linkedin.com/in/abdqudus-gbadamosi" 8 | }, 9 | { 10 | "icon": "FaTwitter", 11 | "url": "http://twitter.com/abdkhudus" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/avinashji1302.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open source and travelling inspiration", 3 | "description": "Honstly I never met Eddie personally But I would love to ..... He is amzing guy doing amzing job and Whenever I stuck some problem I message him on twitter he always reply....just wanted to say Thank You Eddie", 4 | "date": "2023-06-16" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/tobySolutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "King Of Open Source", 3 | "description": "Eddie Jaoude literally motivated me as a person to get started with the open source through EddieHub. My first voyage into open source was during Hacktoberfest 2022. He has been an amazing inspiration to a lot of people and to me.", 4 | "date": "2023-01-21" 5 | } 6 | -------------------------------------------------------------------------------- /data/rohitg00/testimonials/Rahul-Prasad-07.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "The DevOps Guy 🐳", 3 | "description": "**Rohit is Amazing 😄**\n\nHe is source of learning for many beginners developers 👨‍💻\r\nBelieve in give back to community 🙌\r\nHe is consistently learning new tools and technologies which is great skill not all developers have 👍", 4 | "date": "2023-02-06" 5 | } 6 | -------------------------------------------------------------------------------- /data/suchakra012.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Suman Chakraborty", 3 | "bio": "Telecom engineer turned **DevOps Evangelist**. Love to travel and explore different cultures, big foodie by nature", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/itsmesumanc", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/CoffeeGeek101/testimonials/vatsalsinghkv.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "An Amazing Frontend Developer and Mentor", 3 | "description": "Shoumyadeep's amazing frontend skills as well as his helping nature really helped me get along with framer motion. His projects helped a lot in grasping new coding concepts which had been really hard to understand.", 4 | "date": "2023-02-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/Ellah120/testimonials/tobySolutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Testimonial For Ellah", 3 | "description": "She's a very hardworking and resilient developer with top-notch coding skills. Ellah has so much energy when it comes to delivering scalable and awesome Frontend applications built with the most stable and awesome libraries like Reactjs.", 4 | "date": "2023-01-07" 5 | } 6 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/Rishabh-Singh-Codes.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Eddie - For everything open source", 3 | "description": "Eddie is literally the beast when it comes to inviting new people to Open Source contributions. Opening small issues for newcomers to solve, clarifying even the smallest of doubts and motivating people on twitter.", 4 | "date": "2023-01-11" 5 | } 6 | -------------------------------------------------------------------------------- /data/mohan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mohan", 3 | "bio": "Youtube watcher", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/mohan-murali", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Twitter", 12 | "url": "https://twitter.com/_MohanMurali", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | build 4 | .git 5 | .github 6 | .gitignore 7 | Dockerfile 8 | CHANGELOG.md 9 | CODE_OF_CONDUCT.md 10 | kubernetes 11 | reviewpad.yml 12 | playwright.config.js 13 | .gitpod.yml 14 | .gitpod.Dockerfile 15 | SECURITY.md 16 | README.md 17 | compose.yml 18 | mongo-compose.yml 19 | LICENSE 20 | CONTRIBUTING.md 21 | NOCODE-CHANGELOG.md 22 | -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- 1 | FROM node:18 2 | 3 | LABEL org.opencontainers.image.source https://github.com/eddiehubcommunity/BioDrop 4 | 5 | WORKDIR /usr/src/app 6 | 7 | COPY package*.json ./ 8 | ARG NODE_ENV 9 | RUN npm install --ignore-scripts 10 | COPY . . 11 | 12 | RUN sed -i 's/0.0.0/'`npm pkg get version | tr -d '"'`'/g' config/app.json 13 | 14 | CMD ["npm", "run", "docker:dev"] 15 | -------------------------------------------------------------------------------- /data/GrahamTheDevRel/testimonials/loftwah.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Empowering Tech Enthusiast and DevRel Maestro", 3 | "description": "Graham consistently illuminates the path for others in the tech community. His focus on accessibility, open-source solutions, and his relentless drive towards education make him an invaluable asset in our tech world.", 4 | "date": "2023-05-16" 5 | } 6 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/Anushka-codergirl.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "The Open-source guy", 3 | "description": "Pradumna is a highly skilled developer, an active open-source contributor, and a great communicator. He puts forth a lot of effort and constantly encourages others in the community. He shares insightful information, which is fantastic!", 4 | "date": "2023-06-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/Pradumnasaraf/testimonials/Njong392.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Super Supportive", 3 | "description": "Pradumn's support for the community shows in his work, with multiple repositories to help onboard developers new to open source, and DevOps. He creates super helpful content around open source, and can always be seen engaging with the community.", 4 | "date": "2023-01-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/irusha.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Irusha Basukala", 3 | "links": [ 4 | { 5 | "name": "Follow me on GitHub", 6 | "url": "https://github.com/entrepreneur123", 7 | "icon": "FaGithub" 8 | }, 9 | { 10 | "name": "Check out my twitter", 11 | "url": "https://twitter.com/iris_0789", 12 | "icon": "FaTwitter" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /data/yobuir.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Yobu Iradukunda", 3 | "bio": "Full-Stack Developer ( laravel | wordpress | React | typescript | nodeJs | Tailwindcss | bootstrap | livewire | nextJs)", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/yobuir", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /stories/components/user/UserTestimonials.stories.js: -------------------------------------------------------------------------------- 1 | import UserTestimonials from "@components/user/UserTestimonials"; 2 | import profile from "./profile.json"; 3 | 4 | export default { 5 | component: UserTestimonials, 6 | }; 7 | 8 | export const Basic = { 9 | args: { 10 | testimonials: profile.testimonials, 11 | BASE_URL: "https://biodrop.io", 12 | }, 13 | }; 14 | -------------------------------------------------------------------------------- /.github/workflows/json-check.yml: -------------------------------------------------------------------------------- 1 | name: JSON check 2 | 3 | on: 4 | pull_request: 5 | paths: 6 | - "data/**.json" 7 | 8 | jobs: 9 | check: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v4 13 | - name: json-syntax-check 14 | uses: limitusus/json-syntax-check@v2 15 | with: 16 | pattern: "\\.json$" 17 | -------------------------------------------------------------------------------- /data/florianclanet.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Florian Clanet", 3 | "bio": "Cloud Enthusiast", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/Flolight", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Twitter", 12 | "url": "https://twitter.com/FlolightC", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/gurjeetsinghvirdee/testimonials/ishikagoyal02.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Good Mentor", 3 | "description": "Gurjeet Singh Virdee is inspiring , good mentor, adviser and understanding friend. He continuously helping me in learning the open source contribution. I truly appreciate everything he have done for me so far and hope to continue learning from him.", 4 | "date": "2023-01-29" 5 | } 6 | -------------------------------------------------------------------------------- /data/qwertyroop.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Roopesh Vetcha", 3 | "bio": "From student life to gaming adventures, I'm on a quest for knowledge and high scores. Ready to level up and embrace the digital realm!", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/RoopeshVetcha", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /components/statistics/ProgressBar.js: -------------------------------------------------------------------------------- 1 | const ProgressBar = ({ progress }) => { 2 | return ( 3 |
    4 |
    8 |
    9 | ); 10 | }; 11 | 12 | export default ProgressBar; 13 | -------------------------------------------------------------------------------- /data/ChinmayMhatre/testimonials/Aadarsh805.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Opensource", 3 | "description": "Chinmay is a great collaborator. He helped me out so much with code suggestions and GitHub commands. He's not just helpful to me, he's always helping others too. He's always doing pull request reviews and going the extra mile to help out everyone at LinkFree.", 4 | "date": "2023-01-19" 5 | } 6 | -------------------------------------------------------------------------------- /data/Taiwrash/testimonials/Olalekan24434.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Meeting taiwrash is a turning point in my tech career", 3 | "description": "Meeting him has opened my eye to alot of ways of learning and working digitally. He empowered and motivated me back to my course when I was depressed and lost interest in everything. He's the reason I still have in tech", 4 | "date": "2023-05-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/thtauhid.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tasnimul Hasan Tauhid", 3 | "bio": "Backend Dev", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/thtauhid", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "LinkedIn", 12 | "url": "https://www.linkedin.com/in/thtauhid", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ChavvaNarayana.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Chavva Narayana Reddy", 3 | "bio": "Full Stack Web Developer | React JS and JS | Raising Standards for Engagement & Success | Outside the Box Thinker", 4 | "links": [ 5 | { 6 | "name": "Connect with me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/chavvanarayana", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/KaushikK.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kaushik", 3 | "bio": "Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/KaushikK", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Kaushikk1704", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Nikhilfy.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nikhil T", 3 | "bio": " ", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter :)", 7 | "url": "https://twitter.com/Nikhilfy", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github :)", 12 | "url": "https://github.com/Nikhilfy", 13 | "icon": "FaGithubAlt" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/bhargav794.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bhargav avinash", 3 | "bio": "Love open source 3000", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/bhargav794", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Twitter", 12 | "url": "https://twitter.com/Bhargavaavinas2", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/rohitagr0310/testimonials/jainankit0811.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "A great helper in need", 3 | "description": "Rohit has always been the open and friendly type of a person. whenever I had any doubt or query about any language or issue or project, he always been the one to look up to. He is great programmer and has always guided me in many projects and many more.", 4 | "date": "2023-05-02" 5 | } 6 | -------------------------------------------------------------------------------- /data/tenyapious.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tenya Pious", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/tenyapious", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/tenyapious", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/zodraccir.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Riccardo Zichittella", 3 | "bio": "In short, I am a computer scientist who wants to learn, every day more and more, I would like to try to contribute as much as possible to open source projects", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/zodraccir", 8 | "icon": "FaGithub" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /components/form/Label.js: -------------------------------------------------------------------------------- 1 | import { classNames } from "@services/utils/classNames"; 2 | 3 | export default function Label({ htmlFor, className = "", ...restProps }) { 4 | return ( 5 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /data/DaminiM-23.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Damini", 3 | "bio": "Open Source | DevOps | community", 4 | "tags": ["Open Source", "DevOps"], 5 | "socials": [ 6 | { "icon": "FaTwitter", "url": "https://twitter.com/DaminiM10" }, 7 | { "icon": "FaGithub", "url": "https://github.com/DaminiM-23" }, 8 | { "icon": "FaLinkedin", "url": "https://linkedin.com/in/Damini Mahajan" } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /data/EddieHubCommunity/testimonials/dren98.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "LinkFree Testimonial", 3 | "description": "I highly recommend LinkFree to anyone in the tech industry looking for a simple and effective way to showcase their content and grow their career, also its a great opportunity to be a part of the open source community and contribute to the project's development.", 4 | "date": "2023-01-04" 5 | } 6 | -------------------------------------------------------------------------------- /data/IsratIJK.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Israt Jahan Khan", 3 | "bio": "Cat lover", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/IsratIJK", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/IsratIJK", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Omkar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Omkar Bhoir", 3 | "bio": "Tech Enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/omkar787", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Let's meet on Twitter", 12 | "url": "https://twitter.com/OmkarCodes", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/an4s911.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anas Bashir", 3 | "bio": "Linux Enthusiast, Learning Web Development", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/an4s911", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "GitHub", 12 | "url": "https://github.com/an4s911", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/eddiejaoude/testimonials/Ertan222.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "You want to learn Open Source and Github? Eddie is answer!", 3 | "description": "Eddie is important for my developer career. Helped me about my open source passion and finally ı become a open source developer. Still learning from him about Gtihub, Git and so many things. Thanks Eddie for everything :star2:", 4 | "date": "2023-01-22" 5 | } 6 | -------------------------------------------------------------------------------- /data/fatimakay.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Fatima Khan", 3 | "bio": "Aspiring front-end dev", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/fatimkhn", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Checkout my Portfolio", 12 | "url": "https://fatimakay.github.io", 13 | "icon": "FaRocket" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/foxy4096.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aditya Priyadarshi", 3 | "bio": "A dumb developer who loves Django.", 4 | "links": [ 5 | { 6 | "name": "GitHub", 7 | "url": "https://github.com/foxy4096", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Twitter", 12 | "url": "https://twitter.com/Foxy4096", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/tplive.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Thomas Qvidahl", 3 | "bio": "Full time, full stack, full of sh... software engineer, devops guy and 'all things open source advocate', constantly trying to improve from the status quo...", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/tplive", 8 | "icon": "FaGithubAlt" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.github/workflows/issue-lock-unlock.yml: -------------------------------------------------------------------------------- 1 | name: "lock/unlock issue" 2 | 3 | on: 4 | issues: 5 | types: labeled 6 | 7 | permissions: 8 | issues: write 9 | 10 | jobs: 11 | action: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - uses: dessant/label-actions@v4 15 | with: 16 | process-only: issues 17 | config-path: .github/config/issue-lock-unlock.yml 18 | -------------------------------------------------------------------------------- /data/Bharath-V26.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Bharath V", 3 | "bio": "I am an enthusiastic cloud-computing job seeker eager to utilize my technical and communication skills to help organization reach its goals.", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/bharath-v-135300210/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/MadhuSaini22/testimonials/oyenolaphilipinc.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Great personality", 3 | "description": "Madhu is a great personality and a developer who uses her skills to break down and solve problems. She openly tweets about her progress on tech twitter and with her in your team, your team is going places because she is an individual that thinks outside of the box.", 4 | "date": "2023-02-15" 5 | } 6 | -------------------------------------------------------------------------------- /data/SiddheshBangar/testimonials/Arindam200.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Great Blogger & Content Creator", 3 | "description": "*Sid* has been doing great work for the community. He's consistently sharing awesome Blogs which are very informative. Moreover, He has a deep knowledge of **Machine Learning**, and **AI**. Also, he's super **supportive** and **active** in the Community.", 4 | "date": "2023-02-01" 5 | } 6 | -------------------------------------------------------------------------------- /data/arnav1776.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arnav Sharma", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/arnav1776", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/arnav1776", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/enn-dee.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "enn-dee", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/enn-dee", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/EnDee404", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/goobric.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mikal Laane", 3 | "bio": "Learner 1st Teacher 2nd", 4 | "links": [ 5 | { 6 | "name": "Collaborate on GitHub", 7 | "url": "https://github.com/goobric", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Chat on Twitter", 12 | "url": "https://twitter.com/goobric", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mkbhru.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Manish Kumar", 3 | "bio": "A fullstack developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/mkbhru", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/mkbhru", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/nitisjan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nitish singh", 3 | "bio": "Open Source contributer ", 4 | "tags": ["Open Source", "Javascript", "java", "NextJS", "DevOps"], 5 | "socials": [ 6 | { 7 | "icon": "FaTwitter", 8 | "url": "https://twitter.com/0nitishtwts" 9 | }, 10 | { 11 | "icon": "FaGithub", 12 | "url": "https://github.com/nitisjan" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /data/renzoromares.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Renzo Romares", 3 | "bio": "Software Engineer.", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/RenzoRomares", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Linkedin", 12 | "url": "https://www.linkedin.com/in/renzoromares/", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/thebarshablog/events/2023-05-11-kcdturkey-conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "isVirtual": false, 3 | "isInPerson": true, 4 | "color": "red", 5 | "name": "WeAreDevelopers World Congress", 6 | "description": "The World's Leading Event for Developers", 7 | "date": { 8 | "start": "2023-07-27", 9 | "end": "2023-07-28" 10 | }, 11 | "url": "https://www.wearedevelopers.com/world-congress" 12 | } 13 | -------------------------------------------------------------------------------- /components/embeds/Youtube.js: -------------------------------------------------------------------------------- 1 | export default function Youtube({ url, title }) { 2 | return ( 3 |
    4 | 11 |
    12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /data/Garvitaj12.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Garvita Jain", 3 | "bio": "B.Tech student", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "github.com/Garvitaj12", 8 | "icon": "FaGitHub" 9 | }, 10 | { 11 | "name": "Follow me on Instagram", 12 | "url": "https://www.instagram.com/garvitaa._/", 13 | "icon": "FaInstagram" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/abhay-h.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abhay Taras", 3 | "bio": "love to learn", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/abhaytaras7.png", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/whistle_xd", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/adixit7386.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abhay Dixit", 3 | "bio": "Full Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/adixit7386", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "LinkedIn", 12 | "url": "https://www.linkedin.com/in/abhay-dixit-4a519a204/", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/akhil.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Akhil Ullattil", 3 | "bio": "ML engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/akhilullattil", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Akhilu94274483", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/anish27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anish Dubey", 3 | "bio": "DevOps Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/AnishDubey27", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Anish_Dubey_", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ankur0904.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ankur Singh", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/ankursingh91002", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/ankur0904", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/badmus306.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Segun Badmus", 3 | "bio": "The African Dream...", 4 | "links": [ 5 | { 6 | "name": "Check out my portfolio", 7 | "url": "https://port-lovat.vercel.app/", 8 | "icon": "FaGlobe" 9 | }, 10 | { 11 | "name": "Check out my GitHub", 12 | "url": "https://github.com/badmus306", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/issamahwach.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Issam Ahwach", 3 | "bio": "Software Engineer, Full-Stack Web Developer", 4 | "links": [ 5 | { 6 | "name": "Github", 7 | "url": "https://github.com/issamahwach", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Medium", 12 | "url": "https://medium.com/@issam.ahw", 13 | "icon": "FaMedium" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/izzarzn.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arjun Hegde Ms", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/izzarzn", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/izzarzn", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/jatin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jatin Rao", 3 | "bio": "Front End Web Developer", 4 | "links": [ 5 | { 6 | "name": "Check out my GitHub", 7 | "url": "https://github.com/jatin2003", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/iamjatinrao", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/rajiv.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rajiv Tiwari", 3 | "bio": "React native developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/rajivransom", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Rajiv_io", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/rdegbe.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RAYMOND DEGBE", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/rdegbe", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/r_degbe7", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/robert5313.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Robert Kimaiyo", 3 | "bio": "Backend developer", 4 | "tags": [ 5 | "Open Source", 6 | "Python", 7 | "Javascript", 8 | "Typescript" 9 | ], 10 | "socials": [ 11 | { "icon": "FaTwitter", 12 | "url": "https://twitter.com/Kimaiyo6Robert" }, 13 | { "icon": "FaGithub", 14 | "url": "https://github.com/robert5313" } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/shrix1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shriprasanna", 3 | "bio": "Front-End developer based in India", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/shriprasanna007", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "LinkedIn", 12 | "url": "https://www.linkedin.com/in/shrix1", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/sunil_joshi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sunil", 3 | "bio": "Open Source Enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/iamsunil25", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/iamsunil25", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/vrajdesai78.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vraj Desai", 3 | "bio": "Android Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/vrajdesai78", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/vrajdesai78", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/zaktech96.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zakariye Sahid", 3 | "bio": "Front end developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/zaktech96", 8 | "icon": "SiTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/zaktech96", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /stories/components/user/UserLink.stories.js: -------------------------------------------------------------------------------- 1 | import UserLink from "@components/user/UserLink"; 2 | 3 | export default { 4 | component: UserLink, 5 | }; 6 | 7 | export const Basic = { 8 | args: { 9 | link: { 10 | url: "https://www.youtube.com", 11 | clicks: 2, 12 | name: "My youtube channel", 13 | icon: "FaYoutube", 14 | }, 15 | username: "test", 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /config/logger.js: -------------------------------------------------------------------------------- 1 | import { serverEnv } from "@config/schemas/serverSchema"; 2 | import * as PinoLogger from "pino"; 3 | 4 | const config = { 5 | transport: { 6 | target: "pino-pretty", 7 | options: { 8 | colorize: true, 9 | }, 10 | }, 11 | }; 12 | 13 | let logger; 14 | 15 | logger = PinoLogger.pino(serverEnv.NODE_ENV === "development" ? config : {}); 16 | 17 | export default logger; 18 | -------------------------------------------------------------------------------- /data/Gajendrakm.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gajendra KM", 3 | "bio": "Full Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Gajendrakm", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/tweetgajendra", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Govamarket.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Govamarket", 3 | "bio": "I am a frontend developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Govamarket", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/Govamarket", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/PriyanshuIndra.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Priyanshu Indra", 3 | "bio": "Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/PriyanshuIndra4", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/PriyanshuIndra", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/SaNsK11.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sanskar Goyal", 3 | "bio": "Founder of Hash Inklude", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/SaNsK11", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/sanskar_goyal11", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Shubham185y.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shubham Yadav", 3 | "bio": "Software Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Shubhamy185", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/Shubham185y", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/SulthanNK.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sulthan Mohaideen", 3 | "bio": "Tech Savvy | Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/SulthanNK", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/SulthanNK", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Viveksati5143/testimonials/akshitagupta15june.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Outstanding Contributor", 3 | "description": "Vivek has given exceptional contributions to my open-source projects. The ability to grasp the needs and bring the best out of them is inert to him and it makes working with him really great. He is one of the best mentees I have ever mentored in open source programs.", 4 | "date": "2023-09-07" 5 | } 6 | -------------------------------------------------------------------------------- /data/adil14788.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adil Irshad", 3 | "bio": "Exploring open source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/adil14788", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/AdilIrshad73", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ahnafahamed.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ahnaf Ahamed", 3 | "bio": "Front-end developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/AhnafAhamed", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ahnfahmd", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ashishshaji.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ashish Shaji", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.ashishshaji.me", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Connect with me on LinkedIn", 12 | "url": "https://linkedin.ashishshaji.me", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ashwinair.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ashwin Nair", 3 | "bio": "Open Source Enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/ashwinair", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ashwinnair0007", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/bugsyy157.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abhishek Yadav", 3 | "bio": "Open Source Enthusiast ⚡", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/bugsyy157", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/a6hi1507", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/devsurajrai.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Suraj Rai", 3 | "bio": "Web Developer Aspirant", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/devsurajrai", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/surajrai_z", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/harikanani.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Harikrushn Kanani", 3 | "bio": "Backend Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/harikanani", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Harikrushn9", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/hiteshkowdiki.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Hitesh Kowdiki", 3 | "bio": "Open Source FTW", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/kkhitesh", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/HiteshKowdiki", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/jayvirrathi.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jayvir Rathi", 3 | "bio": "Software Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Jayvirrathi", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Jayvirrathi", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/manojsai1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Manoj Sai", 3 | "bio": "I enjoy turning complex problems into simple,beautiful and intuitive designs and I am ready to have new experiences, meet new people and learn new things.", 4 | "links": [ 5 | { 6 | "name": "Connect with me on Linkedin", 7 | "url": "https://www.linkedin.com/in/manojsai1/", 8 | "icon": "FaLinkedin" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/saikalyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Saikalyan Akunuri", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/saikalyan15", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/sai_a", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/shreyas0924.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shreyas P", 3 | "bio": "Full-Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Shreyas0924", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on GitHub", 12 | "url": "https://github.com/shreyas0924", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/swapnul.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Swapnil Srivastava", 3 | "bio": "Quality Engineer | Java | Learner", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Swapnil__404", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/swapnul", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ta-sakin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tahjib Al Sakin", 3 | "bio": "Software Developer | MERN | Graphql", 4 | "links": [ 5 | { 6 | "name": "Linkedin", 7 | "url": "https://www.linkedin.com/in/tahjib-al-sakin", 8 | "icon": "FaLinkedin" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/ta-sakin", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/vrishti29.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Vrishti Garg", 3 | "bio": "I am a designer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/vrishti__garg", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on GitHub", 12 | "url": "https://github.com/vrishti29", 13 | "icon": "FaGithubAlt" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /tests/data/_test-profile-user-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test User Name 5", 3 | "bio": "Test user bio 5", 4 | "socials": [ 5 | { "icon": "FaTwitter", "url": "https://twitter.com/eddiejaoude" } 6 | ], 7 | "links": [ 8 | { 9 | "group": "Business", 10 | "name": "Business: DevRel Services", 11 | "url": "http://eddiejaoude.io", 12 | "icon": "FaLink" 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /components/tag/TagSimple.js: -------------------------------------------------------------------------------- 1 | import { classNames } from "@services/utils/classNames"; 2 | 3 | export default function TagSimple({ name, isSelected }) { 4 | return ( 5 |
    11 | {name} 12 |
    13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /data/Althaf66.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Althaf Asharaf", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Althaf66", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/AlthafAsharaf02", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Bakugo90.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Samadou Ouro-agorouko", 3 | "bio": "Software Developer | Microsoft Learn Student Ambassador | Studying Physics", 4 | "socials":[ 5 | { 6 | "icon": "FaLinkedin", 7 | "url": "https://www.linkedin.com/in/samadou-ouro-agorouko-31527a239/" 8 | }, 9 | { 10 | "icon": "FaTwitter", 11 | "url": "https://twitter.com/Bakugo90" 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /data/EndGaurav.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Gaurav Singh Jethuri", 3 | "bio": "DevOps lover and Newbier in Open Source", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/gauravjethuri11", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/EndGaurav", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/JoelPickin/testimonials/CBID2.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Open Source Prince", 3 | "description": "If you’re new to open source projects, I highly recommend going to Joel. He has a wonderful community called [Station](https://station-team.netlify.app/). Through him, I grew to love open source projects and developed the habit of tracking my accomplishments. Thanks for being awesome Joel! 😊", 4 | "date": "2023-01-05" 5 | } 6 | -------------------------------------------------------------------------------- /data/MeetMulik.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Meet Mulik", 3 | "bio": "Technology Enthusiast | Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/MeetMulik", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/mulik_meet", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Nikhil-1503.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nikhil Shanbhag", 3 | "bio": "Front End Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Nikhil-1503", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Nikhil_1503", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/RobJackTech.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Robert Jackson", 3 | "bio": "Full Stack Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/RobJackTech", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/RobJackTech", 13 | "icon": "FaGithubAlt" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Schrodinger-Hat/events/2023-03-24-os-day.json: -------------------------------------------------------------------------------- 1 | { 2 | "isInPerson": true, 3 | "isVirtual": true, 4 | "color": "red", 5 | "name": "Open Source Day 2023", 6 | "description": "an English language conference about the Open Source world", 7 | "date": { 8 | "start": "2023-03-24T09:00:00.000+00:00", 9 | "end": "2023-03-24T21:30:00.000+00:00" 10 | }, 11 | "url": "https://2023.osday.dev" 12 | } 13 | -------------------------------------------------------------------------------- /data/YanaGorina-alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Yana Gorina", 3 | "bio": "Software Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/yana-gorina/", 8 | "icon": "FaLinkedin" 9 | }, 10 | { 11 | "name": "GitHub", 12 | "url": "https://github.com/YanaGorina-alt/", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/achutendra.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Achutendra Singh", 3 | "bio": "I am a budding Fullstack Developer", 4 | "links": [ 5 | { 6 | "name": "Lets Connect on Twitter", 7 | "url": "https://twitter.com/achutendra", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/achutendra", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/amisha.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Amisha Kumari", 3 | "bio": "Frontend Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/amishakumari544", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/amishakumari544", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ankushsinghgandhi/testimonials/domz00-2006.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Jack of all trades", 3 | "description": "Having Ankush on board for my backend project has been fantastic! Their skills range from DevOps to server management, and they're equally adept at handling Django and Flutter tasks. Plus, they're always approachable and easy to work with. Highly recommended for any backend needs!", 4 | "date": "2024-04-20" 5 | } -------------------------------------------------------------------------------- /data/ashishtom.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ashish Thomas", 3 | "bio": "Flutter and web developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/alceil", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ashishthomas6", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/manishitMani.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Manishit Mani", 3 | "bio": "I am a devloper", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/manishit080", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/manishitMani", 13 | "icon": "FaGithubAlt" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mansig20.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mansi Gehlot", 3 | "bio": "cse student", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/Gehlot_Mansi", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://www.instagram.com/maanseee.20/", 13 | "icon": "FaInstagram" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/nikhilhuirem.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nikhil Huirem", 3 | "bio": "Software Developer based in India", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/nikhilhuirem", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/nikhilhuirem", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/sreekar-tammana.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sreekar Tammana", 3 | "bio": "LEARNER", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Sreekar-Tammana", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Sreekar65168302", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/technophile-04.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shiv Bhonde", 3 | "bio": "A Coding Enthusiast ", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/technophile-04", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ShivBhonde", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/wajid281.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mohammed Abdul Wajeed", 3 | "bio": "Software Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/wajid281", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/optimistic_328", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/yogesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Yogesh Summan", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/yogeshsumman", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/summanyogesh", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Arindam200/testimonials/MadhuSaini22.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Very Kind and great content creator!!", 3 | "description": "Arindam is an Amazing content creator. He share amazing tips and useful hints through his social media accounts, He's very active in the community and always ready to help people. I'm sure, he'll be a great up-coming-content-creator by seeing his expertise and knowledge.", 4 | "date": "2023-02-01" 5 | } 6 | -------------------------------------------------------------------------------- /data/BatuhanOnge.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Himmet Batuhan Önge", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "LinkedIn", 7 | "url": "https://www.linkedin.com/in/himmet-batuhan-%C3%B6nge-384418264/", 8 | "icon": "FaLinkedin" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/BatuhanOnge", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/DominicFrei/testimonials/loftwah.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Exceptional Developer with a Passion for Innovation", 3 | "description": "Collaborating with Dominic on GrittR was a pleasure. He's an exceptional iOS and Unity developer with a passion for innovation. Our ideas for Kookagram were seamlessly integrated into GrittR. Dominic is a great team player and collaborator. Highly recommended!", 4 | "date": "2023-03-04" 5 | } 6 | -------------------------------------------------------------------------------- /data/FrancescoXX/testimonials/Njong392.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Awesome Mentor", 3 | "description": "Francesco is an AMAZING mentor when it comes to community, DevOps, Devrel, and an overall friendly person. I love that he goes out of his way to support and help other developers. His way of constantly challenging himself to grow is very inspiring, and it is something I am constantly in awe of!", 4 | "date": "2023-01-26" 5 | } 6 | -------------------------------------------------------------------------------- /data/LakshayVardhan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lakshay Vardhan", 3 | "bio": "Just a beginner :)", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/iwantamaste", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/VardhanLakshay_", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/LokeshDigari.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Lokesh Digari", 3 | "bio": "Computer Science Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/lokicodedaily", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/lokidigari", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Pranit-02.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pranit Utekar", 3 | "bio": "Open Source Enthusiast ✨️", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Pranit-02", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/_Pranit_Utekar_", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/SattyamSamania.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sattyam Samania", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/SattyamSamania", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Sattyam15", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Uvacoder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Alec Campbell", 3 | "bio": "Jack of all trades, master of few", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/VaLandscapes", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on GitHub", 12 | "url": "https://github.com/uvacoder", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/abewartech.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Rahmad Al Habib Khasary", 3 | "bio": "I'm a software engineer based in Cibinong, Bogor specializing in building (and occasionally designing) exceptional websites, applications, and everything in between.", 4 | "links": [ 5 | { 6 | "name": "Follow me on Tv Time", 7 | "url": "https://www.tvtime.com/en/37120933", 8 | "icon": "SiTvtime" 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /data/akhileshthite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Akhilesh Thite", 3 | "bio": "Web3 developer 🌈", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/akhileshthite", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/akhileshthite_", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/amarjeet.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Amarjeet kumar", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/amarjeetk06", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Amarjee73077825", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/anaskhan28.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anas Khan", 3 | "bio": "Learning finance and coding stuffs", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/anaskhan28", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/anaskhan_28", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/eddejayaklu.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jayavardhan Reddy", 3 | "bio": "Student and web developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/eddejayaklu", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/jayaedde", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/iasonathanasiosgiatsios.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Iason Athanasios Giatsios", 3 | "bio": "Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/iason9", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/iason9G", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/joeboadiDev.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Joe Boadi", 3 | "bio": "Ex-allied health, Tech enthusiast, Software Engineer", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/joeboadiDev_", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Github", 12 | "url": "https://github.com/joeboadiDev", 13 | "icon": "FaGithubAlt" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/kabir0x17.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Kabir", 3 | "bio": "Open Source and Cyber Security Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/kabir0x17", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/kabir0x17", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/marcelosousa.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Marcelo Sousa", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/marcelosousa", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/marceloabsousa", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mayurstwt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mayur Sankhala", 3 | "bio": "Happy since learned development", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/mayurstwt", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/mayurstwt", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mikeysan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mikey San", 3 | "bio": "Support Engineer and Community Moderator", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/mikeysan", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/whoismikey", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mohamed_ah.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mohamed Abdul Hameed", 3 | "bio": "Software Engineer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/mohamed-ah", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/mohamed_jeddah", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/mohammad.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mohammad Khaled", 3 | "bio": "Programming Enthusiastic", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/mohammad4kh", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ma7ammadkhaled", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/sumitmukharjeeeeee.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Sumit Mukharjee", 3 | "bio": "Learner", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/sumitmukharjeeeeee", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/SumitMukharjii", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/zadilkhwaja.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adil Khwaja", 3 | "bio": "Exploring open source", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/zadilkhwaja", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Connect me on LinkedIn", 12 | "url": "https://linkedin.com/in/zadilkhwaja", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/2brownc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Brown Chinta", 3 | "bio": "Software Developer & Open Source Enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/2brownc", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/heybrownc", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/AliMora83/testimonials/varchodi.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "The Coding Genius and Team Player We all Need", 3 | "description": "Working with @AliMora83 on our Chingu Voyages project was fantastic. He's a coding genius, making tough problems look easy. Plus, he's great at explaining things and working together. If you need a talented developer who's also a great teammate, @AliMora83 is your guy!", 4 | "date": "2023-09-21" 5 | } 6 | -------------------------------------------------------------------------------- /data/AnishLohiya.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Anish Lohiya", 3 | "bio": "Python Programmer | IT Student", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/AnishLohiya", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/AnishLohiya169", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/MukulKolpe.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Mukul Kolpe", 3 | "bio": "Open Source Enthusiast | Web Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/MukulKolpe", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/MukulKolpe", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Pushpendra518.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pushpendra Menaria", 3 | "bio": "JAI SHREE RAM", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://twitter.com/Pushpendra518", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Instagram", 12 | "url": "https://twitter.com/pushpendra.menaria", 13 | "icon": "FaInstagram" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/abubakarsadiqq.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Abubakar sadiq", 3 | "bio": "open source enthusiast", 4 | "links": [ 5 | { 6 | "name": "follow me on GitHub", 7 | "url": "https://github.com/Abubakarsadiqq", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "follow me on Twitter", 12 | "url": "https://twitter.com/thetrustworthy0", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ad3rinto.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Micheal Aderinto", 3 | "bio": "Product Management, BigData enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/ad3rinto", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/ad3rinto", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/arun12329.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Arun lohar", 3 | "bio": "Student At Techno INDIA NJR", 4 | "links": [ 5 | { 6 | "name": "Follow me on Github", 7 | "url": "https://github.com/arun12329", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Instagram", 12 | "url": "https://www.instagram.com/arun_lohar123/", 13 | "icon": "Fa Instagram" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ashishk1331.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ashish Khare", 3 | "bio": "An avid learner and binary tree lover.", 4 | "links": [ 5 | { 6 | "name": "The Tech Home", 7 | "url": "https://twitter.com/ashishk1331", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Instagram", 12 | "url": "https://www.instagram.com/hugekontrast/", 13 | "icon": "FaInstagram" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/dhruvabhat24/testimonials/sujan5757.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Performance in project Work", 3 | "description": "Druva Bhat is one of my project teammates. He's a quick learner and passionately dedicated to his work. I've had the pleasure of working with him on several projects, and he's always impressed me with his ability to grasp new concepts quickly and apply them with enthousiasm and creativity", 4 | "date": "2023-12-31" 5 | } -------------------------------------------------------------------------------- /data/dipankar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Dipankar Medhi", 3 | "bio": "Data Science and Development", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Dipankar-Medhi", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/_dipankarmedhi", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/harshit-002.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Harshit Joshi", 3 | "bio": "Developer, Photography enthusiast", 4 | "links": [ 5 | { 6 | "name": "LinkedIn", 7 | "url": "https://www.linkedin.com/in/harshit-joshi-62457223a/", 8 | "icon": "FaLinkedin" 9 | }, 10 | { 11 | "name": "GitHub", 12 | "url": "https://github.com/harshit-002", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/jainam-r.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jainam Rambhia", 3 | "bio": "Love Open Source :)", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/RambhiaJainam", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on LinkedIn", 12 | "url": "https://www.linkedin.com/in/jainam-r/", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/nirbhay12345.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nirbhay Chaplot", 3 | "bio": "Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/nirbhay12345", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Nirbhay00704167", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/omkar342.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Omkar Jadhav", 3 | "bio": "Web Developer || Open Source Enthusiast.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/omkar342", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/anthropic_o3", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/pratit989.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Pratit Todkar", 3 | "bio": "Cross-Platform Flutter Developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/pratit989", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Pratit_todkar", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/raghu-007.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RAGHU S (test)", 3 | "bio": "Software Engineer and Tech Entrepreneur", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/raghu7_", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/raghu-007", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/raiyanmook27.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Raiyan Mukhtar", 3 | "bio": "Solidity/Smart Contract developer", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/raiyanmook27", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/raiyandev", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/rajaditya06.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aditya Raj", 3 | "bio": "Blockchain Developer|| open source", 4 | "links": [ 5 | { 6 | "name": "Follow me on Twitter", 7 | "url": "https://twitter.com/rajaditya02", 8 | "icon": "FaTwitter" 9 | }, 10 | { 11 | "name": "Follow me on Github", 12 | "url": "https://github.com/rajaditya06", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/slowcheetah07.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Himadri Bhattacharya", 3 | "bio": "I am a full stack developer", 4 | "links": [ 5 | { 6 | "name": "Linkedln", 7 | "url": "https://www.linkedin.com/in/himadribhattacharya3/", 8 | "icon": "FaLinkedin" 9 | }, 10 | { 11 | "name": "Twitter", 12 | "url": "https://twitter.com/HimadriBh07", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/ssvali.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Shashavali", 3 | "bio": "Open Source, Test Automation, SOAPUI", 4 | "links": [ 5 | { 6 | "name": "Follow me on LinkedIn", 7 | "url": "https://www.linkedin.com/in/shashavali", 8 | "icon": "FaLinkedIn" 9 | }, 10 | { 11 | "name": "Follow me on GitHub", 12 | "url": "https://github.com/ssvali", 13 | "icon": "FaGithub" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/zehra47.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zehra Anwar", 3 | "bio": " A freshman in computer science", 4 | "links": [ 5 | { 6 | "name": "Check out my GitHub", 7 | "url": "https://github.com/zehra47", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Connect with me on LinkedIn", 12 | "url": "https://linkedin.com/in/Z-oneOfThree", 13 | "icon": "FaLinkedin" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Adarsh.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Adarsh", 3 | "bio": "I am a web developer and an open-source enthusiast.", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/adarrssh", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Adarsh87498341", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Aliencoder-75.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aliencoder-75", 3 | "bio": "I write code 💻 for OpenSource", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Aliencoder-75", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Aliencoder_75", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Aryan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Aryan Srivastava", 3 | "bio": "Android and open source enthusiast", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/Aryan-Srivastava", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/Aryan_Sri_", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/CM-Sharan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "C M SHARAN", 3 | "bio": "Full Stack Developer And Open Source Enthusiast!", 4 | "links": [ 5 | { 6 | "name": "Follow me on GitHub", 7 | "url": "https://github.com/CM-Sharan", 8 | "icon": "FaGithub" 9 | }, 10 | { 11 | "name": "Follow me on Twitter", 12 | "url": "https://twitter.com/cm_sharan", 13 | "icon": "FaTwitter" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/Dun-sin/testimonials/sojijr.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "A Guiding Light in the Open Source Community", 3 | "description": "Dunsin is an outstanding open-source contributor. She truly represents the spirit of open source with her genuine tips and dedication. She empowers and guides developers, making her a genuine inspiration in the tech community. Her influence is significant, and she's truly authentic.", 4 | "date": "2023-08-25" 5 | } 6 | -------------------------------------------------------------------------------- /data/Keith-Web3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Olorunnishola Olamilekan", 3 | "bio": "Hi, I'm Ola. A frontend developer. My current tech stack consists of HTML, SCSS, JS, React, Firebase, Git. I'm currently learning react and I hope to build amazing projects with it soon.", 4 | "links": [ 5 | { 6 | "name": "Twitter", 7 | "url": "https://twitter.com/Keith_Web3", 8 | "icon": "FaTwitter" 9 | } 10 | ] 11 | } 12 | --------------------------------------------------------------------------------