User lowercase for repo

This commit is contained in:
Luke Vella 2022-04-13 20:04:00 +01:00
parent 7f11d79e49
commit 6c2ca12786
6 changed files with 18 additions and 13 deletions

View file

@ -11,7 +11,7 @@ _For running in a production environment_
Clone this repo and change directory to the root of the repository.
```bash
git clone https://github.com/lukevella/Rallly.git
git clone https://github.com/lukevella/rallly.git
cd Rallly
```
@ -41,7 +41,7 @@ Go to [http://localhost:3000](http://localhost:3000)
Clone this repo and change directory to the root of the repository.
```bash
git clone https://github.com/lukevella/Rallly.git
git clone https://github.com/lukevella/rallly.git
cd Rallly
```

View file

@ -38,8 +38,11 @@ export const UserDetailsForm: React.VoidFunctionComponent<
style={{ width: 400 }}
onSubmit={handleSubmit(onSubmit)}
>
<h2>Your details</h2>
<div className="formField">
<label htmlFor="name">{t("name")}</label>
<label className="text-slate-500" htmlFor="name">
{t("name")}
</label>
<input
type="text"
id="name"
@ -52,7 +55,9 @@ export const UserDetailsForm: React.VoidFunctionComponent<
</div>
<div className="formField">
<label htmlFor="contact">{t("email")}</label>
<label className="text-slate-500" htmlFor="contact">
{t("email")}
</label>
<input
id="contact"
className={clsx("input w-full", {

View file

@ -26,7 +26,7 @@ const Bonus: React.VoidFunctionComponent = () => {
<h3 className="heading-sm">Open-source</h3>
<div className="text text-base leading-relaxed">
The codebase is fully open-source and{" "}
<a href="https://github.com/lukevella/Rallly">
<a href="https://github.com/lukevella/rallly">
available on github
</a>
.

View file

@ -58,7 +58,7 @@ const Menu: React.VoidFunctionComponent<{ className: string }> = ({
Support
</a>
</Link>
<Link href="https://github.com/lukevella/Rallly">
<Link href="https://github.com/lukevella/rallly">
<a className="text-gray-400 hover:text-indigo-500 hover:underline-offset-2 hover:no-underline transition-colors">
<Github className="w-8" />
</a>

View file

@ -28,9 +28,9 @@ const Footer: React.VoidFunctionComponent = () => {
</p>
<div className="flex space-x-3">
<GitHubButton
href="https://github.com/lukevella/Rallly"
href="https://github.com/lukevella/rallly"
data-icon="octicon-star"
aria-label="Star lukevella/Rallly on GitHub"
aria-label="Star lukevella/rallly on GitHub"
data-show-count={true}
>
Star
@ -50,7 +50,7 @@ const Footer: React.VoidFunctionComponent = () => {
<li>
<a
className="text-gray-400 hover:text-gray-800 hover:no-underline font-normal leading-loose"
href="https://github.com/lukevella/Rallly/discussions"
href="https://github.com/lukevella/rallly/discussions"
>
Forum
</a>
@ -84,7 +84,7 @@ const Footer: React.VoidFunctionComponent = () => {
<li>
<a
className="text-gray-400 hover:text-gray-800 hover:no-underline font-normal leading-loose"
href="https://github.com/lukevella/Rallly"
href="https://github.com/lukevella/rallly"
>
Github
</a>

View file

@ -47,7 +47,7 @@ const Support: React.VoidFunctionComponent = () => {
i18nKey="canRalllyDoAnswer"
components={{
a: (
<a href="https://github.com/lukevella/Rallly/discussions" />
<a href="https://github.com/lukevella/rallly/discussions" />
),
}}
/>
@ -114,7 +114,7 @@ const Support: React.VoidFunctionComponent = () => {
t={t}
i18nKey="selfHostAnswer"
components={{
a: <a href="https://github.com/lukevella/Rallly" />,
a: <a href="https://github.com/lukevella/rallly" />,
}}
/>
</Disclosure.Panel>
@ -132,7 +132,7 @@ const Support: React.VoidFunctionComponent = () => {
i18nKey="canYouHelpMeSetUpRalllyAnswer"
components={{
a: (
<a href="https://github.com/lukevella/Rallly/discussions" />
<a href="https://github.com/lukevella/rallly/discussions" />
),
}}
/>