Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
fix: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
KunalSin9h committed May 28, 2024
1 parent 755a255 commit 4f2948c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion nginx/deploy.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server {
server_name indiabuild.tech www.indiabuild.tech;
server_name indiabuild.tech;

location / {
proxy_pass http://127.0.0.1:5555;
Expand All @@ -8,4 +8,8 @@ server {
location /twitter {
return 301 https://x.com/i/communities/1669220055907811330;
}

location = /discord {
return 301 https://discord.gg/indiabuild-building-india-s-future-1069614588133396552;
}
}
Binary file removed public/twitter.png
Binary file not shown.
Binary file added public/x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function Home() {
/>
<Options
name="Top Tags"
items={["semicundurcot", "python", "linear-regression"]}
items={["semiconductors", "python", "linear-regression"]}
slug="tags"
/>
<div class="hidden md:block">
Expand All @@ -28,11 +28,11 @@ export default function Home() {
class="rounded shadow-xl transition ease-in-out delay-150 hover:-translate-y-1 hover:scale-110"
/>
<div class="flex gap-4 mt-4">
<a href="http://indiabuild.tech/discord">
<a href="https://discord.com/invite/indiabuild-building-india-s-future-1069614588133396552">
<img src="/discord.svg" alt="discord logo" width={40} />
</a>
<a href="http://indiabuild.tech/twitter">
<img src="/twitter.png" alt="Twitter logo" width={35} />
<a href="https://x.com/i/communities/1669220055907811330">
<img src="/x.png" alt="Twitter logo" width={35} />
</a>
<a href="https://github.com/indiabuild">
<img src="/github.svg" alt="Github logo" width={35} />
Expand Down

0 comments on commit 4f2948c

Please sign in to comment.