diff --git a/src/App.tsx b/src/App.tsx
index 9a46048..f4ee4b9 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -9,6 +9,7 @@ import { Confirmation } from './pages/Confirmation';
import { IntlProvider } from 'react-intl';
import { localization } from './constants/localization';
import { ConfigProvider } from 'antd';
+import { Credits } from './components/Credits';
export default function App() {
const language = useRecoilValue(currentLanguage);
@@ -28,6 +29,7 @@ export default function App() {
+
);
diff --git a/src/components/Credits.scss b/src/components/Credits.scss
new file mode 100644
index 0000000..534499a
--- /dev/null
+++ b/src/components/Credits.scss
@@ -0,0 +1,12 @@
+.Credits {
+ font-size: 1.3rem;
+ text-align: center;
+ padding-bottom: 1rem;
+ margin-top: 1rem;
+ font-weight: bold;
+
+ .separator {
+ margin-left: 1rem;
+ margin-right: 1rem;
+ }
+}
diff --git a/src/components/Credits.tsx b/src/components/Credits.tsx
new file mode 100644
index 0000000..edb8a4d
--- /dev/null
+++ b/src/components/Credits.tsx
@@ -0,0 +1,19 @@
+import './Credits.scss';
+
+import { FormattedMessage } from 'react-intl';
+
+export const Credits = () => {
+ return (
+
+ );
+};
diff --git a/src/constants/localization/common/en.ts b/src/constants/localization/common/en.ts
index d1b5936..504f13a 100644
--- a/src/constants/localization/common/en.ts
+++ b/src/constants/localization/common/en.ts
@@ -2,5 +2,7 @@ export const common: Record = {
"common.lintu": "Lintu",
"common.maslo": "Maslo",
"common.datetime": "August 27",
- "common.place": "Seurantalo | Livonsaari"
+ "common.place": "Seurantalo | Livonsaari",
+ "common.sourceCode": "code by",
+ "common.design": "design by"
}
\ No newline at end of file
diff --git a/src/constants/localization/common/fi.ts b/src/constants/localization/common/fi.ts
index fed2606..94e927d 100644
--- a/src/constants/localization/common/fi.ts
+++ b/src/constants/localization/common/fi.ts
@@ -2,5 +2,7 @@ export const common: Record = {
"common.lintu": "Lintu",
"common.maslo": "Maslo",
"common.datetime": "Elokuun 27",
- "common.place": "Seurantalo | Livonsaari"
+ "common.place": "Seurantalo | Livonsaari",
+ "common.sourceCode": "lähdekoodi by",
+ "common.design": "design by"
}
\ No newline at end of file