Merge pull request #51 from ravixalgorithm/main
feat: embed Peerlist badge in README, Login, Sign-up, and Dashboard
This commit is contained in:
commit
10e8c1a261
|
|
@ -2,6 +2,13 @@
|
|||
Checkout new amazing projects also, <a href="github.com/open-dev-society/openreadme" target="_blank">OpenReadme </a> is live
|
||||
</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="Featured|HelloGitHub" 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">
|
||||
<br />
|
||||
<a href="#" target="_blank">
|
||||
|
|
|
|||
|
|
@ -79,6 +79,15 @@ const SignIn = () => {
|
|||
|
||||
<FooterLink text="Don't have an account?" linkText="Create an account" href="/sign-up" />
|
||||
<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>
|
||||
</>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -135,6 +135,15 @@ const SignUp = () => {
|
|||
<FooterLink text="Already have an account?" linkText="Sign in" href="/sign-in" />
|
||||
|
||||
<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>
|
||||
</>
|
||||
)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ import {
|
|||
MARKET_OVERVIEW_WIDGET_CONFIG,
|
||||
TOP_STORIES_WIDGET_CONFIG
|
||||
} from "@/lib/constants";
|
||||
import {sendDailyNewsSummary} from "@/lib/inngest/functions";
|
||||
|
||||
const Home = () => {
|
||||
const scriptUrl = `https://s3.tradingview.com/external-embedding/embed-widget-`;
|
||||
|
|
@ -48,6 +47,16 @@ const Home = () => {
|
|||
</div>
|
||||
|
||||
</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>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue