-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46d38a7
commit 889c90c
Showing
7 changed files
with
42 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
import { useTranslations } from "next-intl"; | ||
import { ACTION_LINK } from "./constants"; | ||
import styles from "./FooterAction.module.css"; | ||
|
||
export function FooterAction() { | ||
const t = useTranslations("Dev"); | ||
|
||
return ( | ||
<a className={styles.footerAction} href={ACTION_LINK}> | ||
Присоединиться к нам | ||
{t("Write to us")} | ||
</a> | ||
); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { useTranslations } from "next-intl"; | ||
import cn from "classnames"; | ||
import styles from "@/components/page/Page.module.css"; | ||
|
||
export function Page() { | ||
const t = useTranslations("Dev"); | ||
|
||
return ( | ||
<main className={cn(styles.page)}> | ||
<p | ||
className={cn(styles.page__text)} | ||
dangerouslySetInnerHTML={{ __html: t.raw("Congratulations") }} | ||
/> | ||
|
||
<details dangerouslySetInnerHTML={{ __html: t.raw("Details") }} /> | ||
|
||
<div dangerouslySetInnerHTML={{ __html: t.raw("Description") }} /> | ||
</main> | ||
); | ||
} |
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
889c90c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deploy preview for ekaterinburg-dev ready!
✅ Preview
https://ekaterinburg-5usz6vmmf-ekbdev.vercel.app
https://ekaterinburg-dev-feature-i18n.vercel.app
Built with commit 889c90c.
This pull request is being automatically deployed with vercel-action