Please wait ...
+Do not close this tab.
+diff --git a/public/img/error.svg b/public/img/error.svg new file mode 100644 index 00000000..45390d8f --- /dev/null +++ b/public/img/error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/success.svg b/public/img/success.svg new file mode 100644 index 00000000..ff6101b0 --- /dev/null +++ b/public/img/success.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/warning.svg b/public/img/warning.svg new file mode 100644 index 00000000..e51565c0 --- /dev/null +++ b/public/img/warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/pages/welcome.astro b/src/pages/welcome.astro new file mode 100644 index 00000000..55e15ede --- /dev/null +++ b/src/pages/welcome.astro @@ -0,0 +1,488 @@ +--- +// TODO(@raducristianpopa): Right now the welcome page is using the new design +// and everything is placed in this file to avoid merge conflicts. After the new +// design is merged, update the page - remove duplicates and use +// already existing components/layouts. + +import i18next, { t, changeLanguage } from 'i18next' +import { HeadHrefLangs } from 'astro-i18next/components' +import '/node_modules/@interledger/docs-design-system/src/styles/teal-theme.css' +import '../styles/webm.css' + +interface Props { + title: string + description: string + image?: string +} + +const canonicalURL = new URL(Astro.url.pathname, Astro.site) +const { + title = t('site.title'), + description = t('site.description'), + image = '/img/wm-social.png', +} = Astro.props +changeLanguage('en') +--- + + + + + + + + + +
Do not close this tab.
+