+
+
+
{props.children}
diff --git a/ui/src/index.css b/ui/src/index.css
index afa6d668..4bbc57ba 100644
--- a/ui/src/index.css
+++ b/ui/src/index.css
@@ -54,7 +54,6 @@
#7c1389 90%,
#5b03ad 100%
);
- --iw-color-languageArrowIcon: #951f6f;
}
[class="purple_theme"] {
--iv-font-base: "Gentium Plus", serif;
@@ -105,7 +104,6 @@
#7c1389 90%,
#5b03ad 100%
);
- --iw-color-languageArrowIcon: #0fac8b;
}
}
diff --git a/ui/src/pages/Home.tsx b/ui/src/pages/Home.tsx
index 2089e5c7..8c6d941e 100644
--- a/ui/src/pages/Home.tsx
+++ b/ui/src/pages/Home.tsx
@@ -1,28 +1,23 @@
-import React from 'react';
-import VerificationProgressTracker from "../components/Home/VerificationProgressTracker";
-import VerificationSection from "../components/Home/VerificationSection";
+import React from "react";
import PageTemplate from "../components/PageTemplate";
-import Header from "../components/Home/Header";
+import VerificationSection from "../components/Home/VerificationSection";
+import VerificationProgressTracker from "../components/Home/VerificationProgressTracker";
+
+
+function Home() {
-function Home(props: any) {
- return (
-
-
-
- );
+ return (
+
+
+
+ );
}
export default Home;
diff --git a/ui/src/pages/Scan.tsx b/ui/src/pages/Scan.tsx
new file mode 100644
index 00000000..5fec0d13
--- /dev/null
+++ b/ui/src/pages/Scan.tsx
@@ -0,0 +1,19 @@
+import React from "react";
+import PageTemplate from "../components/PageTemplate";
+import VerificationSection from "../components/Home/VerificationSection";
+import VerificationProgressTracker from "../components/Home/VerificationProgressTracker";
+
+export const Scan = () => {
+ return (
+
+
+
+ );
+};
diff --git a/ui/src/pages/Upload.tsx b/ui/src/pages/Upload.tsx
new file mode 100644
index 00000000..6a6474fc
--- /dev/null
+++ b/ui/src/pages/Upload.tsx
@@ -0,0 +1,37 @@
+import React from "react";
+import { QrIcon } from "../utils/theme-utils";
+import { UploadQrCode } from "../components/Home/VerificationSection/UploadQrCode";
+import { ScanOutline } from "../utils/theme-utils";
+import { useTranslation } from "react-i18next";
+
+export const Upload = () => {
+ const {t} = useTranslation('Upload')
+
+ return (
+
+ );
+};
diff --git a/ui/src/utils/config.ts b/ui/src/utils/config.ts
index 51a47bdb..60ba6c40 100644
--- a/ui/src/utils/config.ts
+++ b/ui/src/utils/config.ts
@@ -3,6 +3,7 @@ import i18next from 'i18next';
export const Pages = {
Home: "/",
+ Scan:"/scan",
VerifyCredentials: "/",/*"/verify"*/
Offline: "/offline",
Redirect: "/redirect",