-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #278 from Program-AR/env-vite
Vite prefix + Acerca de mas lindo
- Loading branch information
Showing
11 changed files
with
46 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
API_URL=http://localhost:3001 | ||
PB_APP_URL=http://localhost:3000 | ||
APP_VERSION=$npm_package_version | ||
GOOGLE_ANALYTICS_KEY=G-xxxxxx #Not necessary, can be omitted for development | ||
VITE_API_URL=http://localhost:3001 | ||
VITE_PB_APP_URL=http://localhost:3000 | ||
VITE_APP_VERSION=$npm_package_version | ||
VITE_GOOGLE_ANALYTICS_KEY=G-xxxxxx #Not necessary, can be omitted for development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import { Typography } from "@mui/material" | ||
import { Link } from "react-router-dom"; | ||
import { useTranslation } from "react-i18next"; | ||
import { Header } from "../header/Header" | ||
import styles from "./about.module.css" | ||
import { Container } from "@mui/material"; | ||
import { UserCard } from "../users/userForm"; | ||
import { PBLink } from "../footer/Footer"; | ||
|
||
export const About = () =>{ | ||
const {t} = useTranslation("about") | ||
export const About = () => { | ||
const { t } = useTranslation("about") | ||
return <> | ||
<Header/> | ||
<Container className={styles.about}> | ||
<Typography className={styles.title} variant="h4">{t("title")}</Typography> | ||
<Typography>{t("text")} | ||
<Link to="https://pilasbloques.program.ar/acerca-de-pilas-bloques/" target="_blank">{t("redirect")}</Link> | ||
</Typography> | ||
</Container> | ||
<Header /> | ||
<UserCard title={t("title")} handleSubmit={() => { }}> | ||
<Typography className={styles.title} variant="h4"></Typography> | ||
<Typography>{t("text")} | ||
<PBLink to="https://pilasbloques.program.ar/acerca-de-pilas-bloques/" target="_blank">{t("redirect")}</PBLink> | ||
</Typography> | ||
</UserCard> | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters