Skip to content

Commit

Permalink
feat: socials
Browse files Browse the repository at this point in the history
  • Loading branch information
boomchanotai committed Feb 2, 2024
1 parent faa7075 commit 2359394
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"@astrojs/tailwind": "^5.1.0",
"@fontsource/ibm-plex-sans-thai": "5.0.8",
"@fontsource/mitr": "5.0.8",
"@iconify-json/fa6-brands": "1.1.18",
"@iconify-json/skill-icons": "1.1.7",
"@nanostores/persistent": "0.9.1",
"@nanostores/react": "0.7.1",
"@types/react": "^18.2.48",
Expand Down
19 changes: 18 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions src/components/register-page/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,23 @@ const Hero = (): JSX.Element => {
>
{cocktail ? "ทำแบบทดสอบอีกครั้ง" : "เริ่มต้นการทำแบบทดสอบ"}
</button>

<div className="flex flex-col items-center justify-center gap-2">
<a href="https://www.instagram.com/gearfestival_official/">
<button className="flex flex-row justify-center gap-4 rounded-lg bg-primary px-4 py-2 font-bold text-white">
<i className="icon-[skill-icons--instagram] h-6 w-6"></i>
gearfestival_official
</button>
</a>
<a href="https://www.tiktok.com/@gearfestival_official">
<button className="flex flex-row justify-center gap-4 rounded-lg bg-primary px-4 py-2 font-bold text-white">
<div className="flex h-6 w-6 flex-col items-center justify-center rounded bg-black">
<i className="icon-[fa6-brands--tiktok] h-4 w-4"></i>
</div>
gearfestival_official
</button>
</a>
</div>
</div>
);
};
Expand Down

0 comments on commit 2359394

Please sign in to comment.