From 362cc775d1c880591b1c3fe16d1a7254a37c604a Mon Sep 17 00:00:00 2001 From: PEeGEe21 Date: Wed, 22 Nov 2023 00:53:45 +0100 Subject: [PATCH 1/3] updated landing page --- platform/app/(dashboard)/layout.js | 2 +- platform/app/components/IconComponent.jsx | 24 ++++++- platform/app/components/Map/ContactMap.jsx | 11 +++ platform/app/contact/page.js | 18 ++++- platform/app/page.js | 81 ++++++++++++++++++---- platform/app/report/page.js | 15 +++- platform/package-lock.json | 42 +++++++++-- platform/package.json | 1 + platform/public/images/Group 48.svg | 43 ++++++++++++ platform/public/images/bq(1).svg | 17 +++++ platform/public/images/bq(2).svg | 17 +++++ platform/public/images/bq(3).svg | 17 +++++ 12 files changed, 262 insertions(+), 26 deletions(-) create mode 100644 platform/app/components/Map/ContactMap.jsx create mode 100644 platform/public/images/Group 48.svg create mode 100644 platform/public/images/bq(1).svg create mode 100644 platform/public/images/bq(2).svg create mode 100644 platform/public/images/bq(3).svg diff --git a/platform/app/(dashboard)/layout.js b/platform/app/(dashboard)/layout.js index 0725681..9f9e9be 100644 --- a/platform/app/(dashboard)/layout.js +++ b/platform/app/(dashboard)/layout.js @@ -1,5 +1,5 @@ import React from "react"; -import Sidebar from "../components/Sidebar"; +// import Sidebar from "../components/Sidebar"; import Navbar from "../components/Navbar"; import DashboardMobileMenu from "../components/MobileMenu/DashboardMobileMenu"; diff --git a/platform/app/components/IconComponent.jsx b/platform/app/components/IconComponent.jsx index 9cbf2bf..2aca463 100644 --- a/platform/app/components/IconComponent.jsx +++ b/platform/app/components/IconComponent.jsx @@ -286,7 +286,7 @@ const PlayIcon = () => { ); }; -const MoneyReceiveIcon = ({size}) => { +const MoneyReceiveIcon = ({ size }) => { return ( <> { ); }; -const CardReceiveIcon = ({size}) => { +const CardReceiveIcon = ({ size }) => { return ( <> { ); }; +const ArrowRightIcon2 = () => { + return ( + <> + + + + + ); +}; + const LogoutIcon = () => { return (
@@ -635,4 +654,5 @@ export { PlayIcon, TelegramIcon, LoaderIcon, + ArrowRightIcon2, }; diff --git a/platform/app/components/Map/ContactMap.jsx b/platform/app/components/Map/ContactMap.jsx new file mode 100644 index 0000000..48b7792 --- /dev/null +++ b/platform/app/components/Map/ContactMap.jsx @@ -0,0 +1,11 @@ +import { Map, Marker } from '@googlemaps/react-wrapper'; + + + +function ContactMap() { + return ( + <>heree + ); +} + +export default ContactMap; diff --git a/platform/app/contact/page.js b/platform/app/contact/page.js index d95068e..ee1c188 100644 --- a/platform/app/contact/page.js +++ b/platform/app/contact/page.js @@ -3,8 +3,14 @@ import Navbar from '../components/HomePageLayout/Navbar'; import Footer from '../components/HomePageLayout/Footer'; import CardComponent from '../components/PageLayout/CardComponent'; import ContactForm from '../components/Forms/ContactForm'; -import { MapIcon, TelegramIcon, TwitterIcon, YoutubeIcon } from '../components/IconComponent'; +import { + MapIcon, + TelegramIcon, + TwitterIcon, + YoutubeIcon, +} from '../components/IconComponent'; import Image from 'next/image'; +import ContactMap from '../components/Map/ContactMap'; const Contact = () => { return ( @@ -37,8 +43,14 @@ const Contact = () => {

-
- map +
+ {/* */} + map
diff --git a/platform/app/page.js b/platform/app/page.js index a247b22..669f85f 100644 --- a/platform/app/page.js +++ b/platform/app/page.js @@ -8,6 +8,7 @@ import Navbar from './components/HomePageLayout/Navbar'; import PricingTable from './components/PricingTable'; import HomeChart from './components/Charts/HomeChart'; import { useState } from 'react'; +import { ArrowRightIcon, ArrowRightIcon2 } from './components/IconComponent'; export default function Home() { const [currentRange, setCurrentRange] = useState('all'); @@ -42,7 +43,7 @@ export default function Home() {
-
+

Fully Backed 1:1 Tokenized @@ -70,15 +71,32 @@ export default function Home() {

+ + bg + bg
-
+
-
+

Our tokenized gold is minted s $DGoldtoken. With 1 $DGold @@ -93,7 +111,16 @@ export default function Home() {

+
+ bg
@@ -125,7 +152,9 @@ export default function Home() { }} > {range.title} - {range.perc} + + {range.perc} + ))}
@@ -154,12 +183,12 @@ export default function Home() {
-
+

Why stress when you can move your gold around in your wallet

-
+
{Services.map((service, index) => ( // @@ -191,26 +220,34 @@ export default function Home() {
-
-
+
+

Why choose $DGold?

-
+
+ bg
-
-
+
+

Our Valued Partners

@@ -266,6 +303,22 @@ export default function Home() {
+ bg + bg
@@ -299,7 +352,7 @@ export default function Home() {
- Read More + Read More
diff --git a/platform/app/report/page.js b/platform/app/report/page.js index 5926cee..748121f 100644 --- a/platform/app/report/page.js +++ b/platform/app/report/page.js @@ -3,13 +3,14 @@ import Navbar from '../components/HomePageLayout/Navbar'; import Footer from '../components/HomePageLayout/Footer'; import Link from 'next/link'; import PricingTable from '../components/PricingTable'; +import Image from 'next/image'; const Report = () => { return (
-
-
+
+

Staying transparent with our reserve @@ -29,7 +30,17 @@ const Report = () => {

+ +
+ {/* bg */}
diff --git a/platform/package-lock.json b/platform/package-lock.json index e48b960..374438b 100644 --- a/platform/package-lock.json +++ b/platform/package-lock.json @@ -14,6 +14,7 @@ "@emotion/react": "^11.11.1", "@emotion/sheet": "^1.2.2", "@emotion/styled": "^11.11.0", + "@googlemaps/react-wrapper": "^1.1.35", "@perawallet/connect": "^1.3.3", "@radix-ui/react-popover": "^1.0.7", "@transak/transak-sdk": "^2.0.0", @@ -1828,6 +1829,25 @@ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" }, + "node_modules/@googlemaps/js-api-loader": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/@googlemaps/js-api-loader/-/js-api-loader-1.16.2.tgz", + "integrity": "sha512-psGw5u0QM6humao48Hn4lrChOM2/rA43ZCm3tKK9qQsEj1/VzqkCqnvGfEOshDbBQflydfaRovbKwZMF4AyqbA==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/@googlemaps/react-wrapper": { + "version": "1.1.35", + "resolved": "https://registry.npmjs.org/@googlemaps/react-wrapper/-/react-wrapper-1.1.35.tgz", + "integrity": "sha512-vK+BDQMHN0Oqr66cW3ZPWVK43BUmJJBu6P8T74tc6/fKpUJUlFEaZsupgIIRRRDW9ejB8uGagUmwOnA2gdcvbw==", + "dependencies": { + "@googlemaps/js-api-loader": "^1.13.2" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.13", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", @@ -5385,8 +5405,7 @@ "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-glob": { "version": "3.3.2", @@ -11718,6 +11737,22 @@ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.1.6.tgz", "integrity": "sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==" }, + "@googlemaps/js-api-loader": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/@googlemaps/js-api-loader/-/js-api-loader-1.16.2.tgz", + "integrity": "sha512-psGw5u0QM6humao48Hn4lrChOM2/rA43ZCm3tKK9qQsEj1/VzqkCqnvGfEOshDbBQflydfaRovbKwZMF4AyqbA==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "@googlemaps/react-wrapper": { + "version": "1.1.35", + "resolved": "https://registry.npmjs.org/@googlemaps/react-wrapper/-/react-wrapper-1.1.35.tgz", + "integrity": "sha512-vK+BDQMHN0Oqr66cW3ZPWVK43BUmJJBu6P8T74tc6/fKpUJUlFEaZsupgIIRRRDW9ejB8uGagUmwOnA2gdcvbw==", + "requires": { + "@googlemaps/js-api-loader": "^1.13.2" + } + }, "@humanwhocodes/config-array": { "version": "0.11.13", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", @@ -14352,8 +14387,7 @@ "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-glob": { "version": "3.3.2", diff --git a/platform/package.json b/platform/package.json index 935d6a0..8788457 100644 --- a/platform/package.json +++ b/platform/package.json @@ -15,6 +15,7 @@ "@emotion/react": "^11.11.1", "@emotion/sheet": "^1.2.2", "@emotion/styled": "^11.11.0", + "@googlemaps/react-wrapper": "^1.1.35", "@perawallet/connect": "^1.3.3", "@radix-ui/react-popover": "^1.0.7", "@transak/transak-sdk": "^2.0.0", diff --git a/platform/public/images/Group 48.svg b/platform/public/images/Group 48.svg new file mode 100644 index 0000000..380944a --- /dev/null +++ b/platform/public/images/Group 48.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/platform/public/images/bq(1).svg b/platform/public/images/bq(1).svg new file mode 100644 index 0000000..53e544f --- /dev/null +++ b/platform/public/images/bq(1).svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/platform/public/images/bq(2).svg b/platform/public/images/bq(2).svg new file mode 100644 index 0000000..d3ec442 --- /dev/null +++ b/platform/public/images/bq(2).svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/platform/public/images/bq(3).svg b/platform/public/images/bq(3).svg new file mode 100644 index 0000000..715b2c5 --- /dev/null +++ b/platform/public/images/bq(3).svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + From 94f2c50c6ac6ee3a6ca68987d3d2d26e54aea452 Mon Sep 17 00:00:00 2001 From: PEeGEe21 Date: Wed, 22 Nov 2023 01:01:59 +0100 Subject: [PATCH 2/3] update landing page --- platform/app/components/Map/ContactMap.jsx | 4 ---- platform/package.json | 1 - 2 files changed, 5 deletions(-) diff --git a/platform/app/components/Map/ContactMap.jsx b/platform/app/components/Map/ContactMap.jsx index 48b7792..07cc55f 100644 --- a/platform/app/components/Map/ContactMap.jsx +++ b/platform/app/components/Map/ContactMap.jsx @@ -1,7 +1,3 @@ -import { Map, Marker } from '@googlemaps/react-wrapper'; - - - function ContactMap() { return ( <>heree diff --git a/platform/package.json b/platform/package.json index 8788457..935d6a0 100644 --- a/platform/package.json +++ b/platform/package.json @@ -15,7 +15,6 @@ "@emotion/react": "^11.11.1", "@emotion/sheet": "^1.2.2", "@emotion/styled": "^11.11.0", - "@googlemaps/react-wrapper": "^1.1.35", "@perawallet/connect": "^1.3.3", "@radix-ui/react-popover": "^1.0.7", "@transak/transak-sdk": "^2.0.0", From 261adcfa031fcd9ea96170d3c7457a4ae0a656fe Mon Sep 17 00:00:00 2001 From: PEeGEe21 Date: Wed, 22 Nov 2023 01:17:45 +0100 Subject: [PATCH 3/3] added new partner --- platform/app/page.js | 7 +++++++ platform/public/images/partners/alchemy.png | Bin 0 -> 1813 bytes 2 files changed, 7 insertions(+) create mode 100644 platform/public/images/partners/alchemy.png diff --git a/platform/app/page.js b/platform/app/page.js index 669f85f..a021cfc 100644 --- a/platform/app/page.js +++ b/platform/app/page.js @@ -285,6 +285,13 @@ export default function Home() { className="object-contain" /> + alchemy Digioracle5(^AI}lSOXJU2{7eOLG## z77J5htu1q(%#vF=l;-pzUW6Q<&-)j=&kxV@{pI=L`RU0;c%PRCYk~m)fV}$!7heDX zh&p5^S;<4Ub5zJV3~PiJ()BP8{(r57arX|J%JIJ5et8QQ73n%p?BA}h24ua3*XRi5=VbB+_kbgz2eS8U^BN$V%PY~%ARi3P zzi%KZP<@t?DCBQiR-=yeEDp7E^9c|swDh3Ctomr#{!7nx4)%tkSR z0oSJ0(>Kb6N^JAM`=|o>Ph^So1p8+HsQu$8!I`oAE~)&&qZ`!s=?2y z&uJg|Sj*%ew8zAs9h)+NStSM*vz*>ms=!3701YIwXq>6Vd{d;mHDvvRA?!817_oSR zbMaTK>7<$F-%OpA{=$yA_G^{fk#>d&<$h#`n_=Vk`*oB-edTvn#zov1+T-{+m zmQ|QzS$53^5Fta`q{b9Bdy2jit=ii;B6aEFUnBRq2DsTUyw(aedOeX~4KVlG2&tdF z2l2jGhQ6smQozInuPLLNKy!)ohRm&7S3(Nt9ybzrg7;ZgKaWfqi*4+C=ha|}P%0BO zD#LSZn|i(!l8V0kNz1JuQx3-eZ0L9aboZT$&lk1GmJ%_&e~i8kpUgYkR^V}36Zw+k z0X=c>-~CZ)O7=?YjP%yYZ+chIxtnm92SyPMB9GU3O2d5Njwa04k z4XbAOjENdCyZ|8%kY$PpT+k)QzGOz=xT++lyjx^~DxC>}tOBu5&k}2WfrcJ5ZH|Nr z`#KEg{x6tB*C1n^Xcc>PflsUIPGR6$&TnhREAZ(H>)nhx6N|i%2@Nfwpm`c*xNm|o zG`pARFYee!_dUUFoCB2w&jFiq5#TsJA?!-xh2e+>edEyEz;rpCzFebc1nApR-}ZP$3*W9~FuZ z{_61kbvls32yR3;eKq2OX{g65XXvwX75YQRr8*ewDYTzfAL&j;_#~GV<(Jxde@{?z zGd(y5^&$ej$h4PsoYoIyc+3H@pKX++tZ2y{muX8R8@dx~7(d3pP9ihmJ2PIPKN9ew zJ7Zr@(oC(s@WAdJbuOMA62lOoyR>2$eymYIrT)&|z?Iy8@6i^-nAqZ?&`{KaUwB7+ zby2;=ZI5RNdH8cEA?wlF!@dWIiY)1v&+bMCy@aqYF(^a#$2C? zRvr0?=xWMxnmJtotVW`!Vr40|s0}Y(BhFaUIc@r=BUT=(;YkE`Tg({->>aR4!r z=i%C!$$-)Rifwq*z~K-2vqQ;IP1rDr0nqN4l`%$u+CL_=+AgcsVUr4h)0^5K_kH}s7VA4yR_1{dk{#JoG=!$-uO;LhDip=(8l?sO55u+ zwbXBeX@I%{5nmvJUia?wWhNbd@2zE#Ti^h|J79T+yn*%0mZ_BLwj)^)hYm#Q#+__&tb%?x`>q2iB$3{Y_ZbL>nS(EAzV&VtRFAsHSolST+M z`ndB4yfXqMj@