Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
garethbilaney committed Sep 25, 2023
1 parent 150e5bb commit c462f23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const currentPath = Astro.url.pathname.replace(/^\/[a-z]{2}(-[a-z]{2})?\//, '')



<footer class="my-20">
<footer class="p-20 bg-black">

{/*
<ul>
Expand All @@ -19,7 +19,7 @@ const currentPath = Astro.url.pathname.replace(/^\/[a-z]{2}(-[a-z]{2})?\//, '')
</li>
))}
</ul> */}
<p class="text-center text-sm text-slate-500" >
<p class="text-center text-sm text-slate-500 text-white" >
{t('footer.copyright')}
</p>

Expand Down
3 changes: 2 additions & 1 deletion src/components/language-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ languages: {

const LanguageSelector: React.FC<Props> = ({ lang, languages }) => {
return (
<div className="bg-white text-gray-800 cursor-pointer focus:ring-opacity-50">
<div className="bg-white text-gray-800 focus:ring-opacity-50">
<select
className="cursor-pointer"
aria-label="Language Selector"
value={lang}
onChange={(e: ChangeEvent<HTMLSelectElement>) => {
Expand Down

0 comments on commit c462f23

Please sign in to comment.