Merge pull request #51 from ravixalgorithm/main

feat: embed Peerlist badge in README, Login, Sign-up, and Dashboard
This commit is contained in:
Mr. Algorithm 2026-02-02 14:46:34 +05:30 committed by GitHub
commit 10e8c1a261
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 59 additions and 25 deletions

View File

@ -2,6 +2,13 @@
Checkout new amazing projects also, <a href="github.com/open-dev-society/openreadme" target="_blank">OpenReadme </a> is live Checkout new amazing projects also, <a href="github.com/open-dev-society/openreadme" target="_blank">OpenReadme </a> is live
</div> </div>
<a href="https://hellogithub.com/repository/Open-Dev-Society/OpenStock" target="_blank"><img src="https://abroad.hellogithub.com/v1/widgets/recommend.svg?rid=5c4337a9e2dd4a8ba8aba87a88f04b8b&claim_uid=07HezcXv9puSGKQ&theme=neutral" alt="FeaturedHelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a> <a href="https://hellogithub.com/repository/Open-Dev-Society/OpenStock" target="_blank"><img src="https://abroad.hellogithub.com/v1/widgets/recommend.svg?rid=5c4337a9e2dd4a8ba8aba87a88f04b8b&claim_uid=07HezcXv9puSGKQ&theme=neutral" alt="FeaturedHelloGitHub" style="width: 250px; height: 54px;" width="250" height="54" /></a>
<a href="https://peerlist.io/ravixalgorithm/project/openstock" target="_blank" rel="noreferrer">
<img
src="https://peerlist.io/api/v1/projects/embed/PRJH8OED7MBL9MGB9HRMKAKLM66KNN?showUpvote=true&theme=light"
alt="OpenStock"
style="width: auto; height: 54px;"
/>
</a>
<div align="center"> <div align="center">
<br /> <br />
<a href="#" target="_blank"> <a href="#" target="_blank">

View File

@ -79,6 +79,15 @@ const SignIn = () => {
<FooterLink text="Don't have an account?" linkText="Create an account" href="/sign-up" /> <FooterLink text="Don't have an account?" linkText="Create an account" href="/sign-up" />
<OpenDevSocietyBranding outerClassName="mt-10 flex justify-center" /> <OpenDevSocietyBranding outerClassName="mt-10 flex justify-center" />
<div className="mt-5 flex justify-center">
<a href="https://peerlist.io/ravixalgorithm/project/openstock" target="_blank" rel="noreferrer">
<img
src="https://peerlist.io/api/v1/projects/embed/PRJH8OED7MBL9MGB9HRMKAKLM66KNN?showUpvote=true&theme=light"
alt="OpenStock"
style={{ width: 'auto', height: '72px' }}
/>
</a>
</div>
</form> </form>
</> </>
); );

View File

@ -135,6 +135,15 @@ const SignUp = () => {
<FooterLink text="Already have an account?" linkText="Sign in" href="/sign-in" /> <FooterLink text="Already have an account?" linkText="Sign in" href="/sign-in" />
<OpenDevSocietyBranding outerClassName="mt-10 flex justify-center" /> <OpenDevSocietyBranding outerClassName="mt-10 flex justify-center" />
<div className="mt-5 flex justify-center">
<a href="https://peerlist.io/ravixalgorithm/project/openstock" target="_blank" rel="noreferrer">
<img
src="https://peerlist.io/api/v1/projects/embed/PRJH8OED7MBL9MGB9HRMKAKLM66KNN?showUpvote=true&theme=light"
alt="OpenStock"
style={{ width: 'auto', height: '72px' }}
/>
</a>
</div>
</form> </form>
</> </>
) )

View File

@ -5,7 +5,6 @@ import {
MARKET_OVERVIEW_WIDGET_CONFIG, MARKET_OVERVIEW_WIDGET_CONFIG,
TOP_STORIES_WIDGET_CONFIG TOP_STORIES_WIDGET_CONFIG
} from "@/lib/constants"; } from "@/lib/constants";
import {sendDailyNewsSummary} from "@/lib/inngest/functions";
const Home = () => { const Home = () => {
const scriptUrl = `https://s3.tradingview.com/external-embedding/embed-widget-`; const scriptUrl = `https://s3.tradingview.com/external-embedding/embed-widget-`;
@ -48,6 +47,16 @@ const Home = () => {
</div> </div>
</section> </section>
<div className="w-full flex flex-col items-center justify-center mt-8 gap-4">
<h2 className="text-xl font-semibold text-gray-200">Upvote us on Peerlist 🚀</h2>
<a href="https://peerlist.io/ravixalgorithm/project/openstock" target="_blank" rel="noreferrer">
<img
src="https://peerlist.io/api/v1/projects/embed/PRJH8OED7MBL9MGB9HRMKAKLM66KNN?showUpvote=true&theme=light"
alt="OpenStock"
style={{ width: "auto", height: "72px" }}
/>
</a>
</div>
</div> </div>
) )
} }