mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 18:26:34 +02:00
User lowercase for repo
This commit is contained in:
parent
7f11d79e49
commit
6c2ca12786
6 changed files with 18 additions and 13 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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", {
|
||||
|
|
|
@ -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>
|
||||
.
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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" />
|
||||
),
|
||||
}}
|
||||
/>
|
||||
|
|
Loading…
Add table
Reference in a new issue