Skip to content

Commit

Permalink
Merge pull request #4 from devak997/add-github-link
Browse files Browse the repository at this point in the history
feat: enhance GetStarted component text and add GitHub link in Navbar
  • Loading branch information
devak997 authored Nov 9, 2024
2 parents baf2248 + 4d66d34 commit 138aecb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/client/src/components/get-started/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ const GetStarted: Component<{
chatrealm.live
</h1>
<p class="font-medium">
Where Anonymity Meets Positivity - Chat Freely, Connect Authentically!
Connect Openly, Chat Freely - An <strong>Open-Source</strong> Space
for Real Connections!
</p>
</div>
<div class="bg-base-300 rounded-xl p-2.5 md:p-4 mb-4">
Expand Down
10 changes: 9 additions & 1 deletion packages/client/src/components/navbar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import GithubIcon from "~icons/mdi/github";
import { Component } from "solid-js";

import ThemeDropdown from "../theme-dropdown";
Expand All @@ -13,7 +14,14 @@ const Navbar: Component<{ handleHomeClick: () => void }> = (properties) => {
chatrealm.live
</button>
</div>
<div class="flex-none">
<div class="flex-none gap-2">
<a
class="btn btn-xs btn-circle btn-ghost"
href="https://github.com/devak997/chatrealm"
target="blank"
>
<GithubIcon class="w-5 h-5" />
</a>
<ThemeDropdown />
</div>
</nav>
Expand Down

0 comments on commit 138aecb

Please sign in to comment.