Skip to content

Commit

Permalink
chore: typos and grammatical errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rupali-codes authored Aug 3, 2024
2 parents 2023961 + 12efdbe commit 708f8b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const Header: FC = () => {
},
{
icon: <Icons.Linkedin className={iconClass} />,
title: 'Linkedin',
title: 'LinkedIn',
href: 'https://www.linkedin.com/company/linkshub-dev',
ariaLabel: 'Follow us on Linkedin',
ariaLabel: 'Follow us on LinkedIn',
},
{
icon: <Icons.Discord className={iconClass} />,
Expand All @@ -35,7 +35,7 @@ export const Header: FC = () => {
},
{
icon: <Icons.GitHub className={iconClass} />,
title: 'Github',
title: 'GitHub',
href: 'https://github.com/rupali-codes/LinksHub',
ariaLabel: 'Explore on GitHub',
showOnMobile: true,
Expand Down
3 changes: 2 additions & 1 deletion components/ThemeToggler/themeToggler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export function ThemeToggler() {
}

const themeColor = resolvedTheme === 'dark' ? '#0F172A' : '#F5F3FF'
const capitalizedTheme = resolvedTheme === "dark" ? "Light" : "Dark";

return (
<HelmetProvider>
Expand All @@ -36,7 +37,7 @@ export function ThemeToggler() {
</Helmet>
<button
onClick={handleThemeToggle}
title={`Theme ${resolvedTheme}`}
title={`${capitalizedTheme} Theme`}
className="group w-[32px] h-[32px] flex items-center justify-center rounded-md hover:bg-slate-100 dark:hover:bg-white dark:hover:bg-opacity-20 transition-colors"
>
{resolvedTheme === 'dark' ? (
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export default function Home() {
<SocialLink
href="https://github.com/rupali-codes/LinksHub"
icon={<Icons.faGithub size={30} />}
title="Github"
title="GitHub"
description="Join us here to report bugs & issues, and suggest features."
/>
</div>
Expand Down

0 comments on commit 708f8b9

Please sign in to comment.