-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated: logo * image on campaigncard objectFi set to content to keep proportions * fixed double tag * added: Create Campaign Menu item to lead to FAQ * added: ogImage per campaign for sharing on social media * removed the disabled social media icons from completed donation step and updated the message to ask people for sharing the link themselves * fixed: side effect of adding title to campaign * fixed: texts and typos * added: financial reports Co-authored-by: quantum-grit <[email protected]>
- Loading branch information
1 parent
610bb92
commit fe90eae
Showing
25 changed files
with
111 additions
and
75 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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,5 +1,5 @@ | ||
{ | ||
"title": "Подкрепи ни", | ||
"support-info": "Подкрепи.бг не събира процент от дарените средства по кампаниите и затова има нужда от допълнителна финансова подкрепа. Ако харесвате мисията ни, моля използвайте банковите данни по-долу за да изпратите вашата подкрепа! Благодарим предварително!", | ||
"title": "Подкрепете ни", | ||
"support-info": "Дейността на Подкрепи.бг се финансира единствено от членски внос и дарения. Вашата помощ ще ни даде възможност да помагаме по-качествено и на повече кампании да постигат своите цели. Направените от нас разходи, ще можете да проследявате в отчетите, които редовно ще публикуваме. ", | ||
"support-us-reference": "дарение за Подкрепи.бг" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from 'react' | ||
import { useTranslation } from 'next-i18next' | ||
import { Container, Typography } from '@mui/material' | ||
|
||
import Layout from 'components/layout/Layout' | ||
import FileDownloadIcon from '@mui/icons-material/FileDownload' | ||
import LinkButton from 'components/common/LinkButton' | ||
|
||
export default function FinanceReportPage() { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<Layout | ||
title={t('about-project:financeReport')} | ||
metaDescription={t('about-project:financeReport')}> | ||
<Container> | ||
<Typography>Финансов репорт за 2021:</Typography> | ||
<LinkButton | ||
endIcon={<FileDownloadIcon />} | ||
href="/finance-reports/Podkrepi.bg_Financial_Report_062022.pdf"> | ||
Свалете от тук | ||
</LinkButton> | ||
</Container> | ||
<Container> | ||
<Typography>Финансов репорт за 2022 Януари-Юни:</Typography> | ||
<LinkButton | ||
endIcon={<FileDownloadIcon />} | ||
href="/finance-reports/Podkrepi.bg_Financial_Report_2021_1.pdf"> | ||
Свалете от тук | ||
</LinkButton> | ||
</Container> | ||
</Layout> | ||
) | ||
} |
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
Oops, something went wrong.