icons readme gitignore

This commit is contained in:
Timur Ercan
2023-02-02 20:04:59 +01:00
parent 9ab839ca10
commit 05daf6e6a4
4 changed files with 15 additions and 4 deletions

1
.gitignore vendored
View File

@@ -35,3 +35,4 @@ yarn-error.log*
*.tsbuildinfo *.tsbuildinfo
next-env.d.ts next-env.d.ts
.env .env
.env.example

View File

@@ -5,6 +5,13 @@
Documenso aims to be the world's most trusted document signing tool. This trust is built by empowering you to self-host Documenso and review how it works under the hood. Join us in creating the new internet of trust. Documenso aims to be the world's most trusted document signing tool. This trust is built by empowering you to self-host Documenso and review how it works under the hood. Join us in creating the new internet of trust.
## todos ## todos
- Sendgrid setup and nodemailer-sendgrid SMTP hint - Sendgrid setup and nodemailer-sendgrid SMTP hint
- Render Deploy YAML file or similar - Render Deploy YAML file or similar
-
# Setup
`git clone repourl`
`npm i in ./`
`rename example.env to .env`
`set values in .env`

View File

@@ -119,11 +119,12 @@ const DashboardPage: NextPageWithLayout = (props: any) => {
aria-hidden="true" aria-hidden="true"
> >
<path <path
strokeLinecap="round" stroke-linecap="round"
strokeLinejoin="round" stroke-linejoin="round"
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z" d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
/> />
</svg> </svg>
<span className="mt-2 block text-sm font-medium text-neon"> <span className="mt-2 block text-sm font-medium text-neon">
Upload a new PDF document Upload a new PDF document
</span> </span>

View File

@@ -4,6 +4,7 @@ import type { NextPageWithLayout } from "./_app";
import Head from "next/head"; import Head from "next/head";
import { import {
CheckBadgeIcon, CheckBadgeIcon,
DocumentPlusIcon,
EnvelopeIcon, EnvelopeIcon,
EyeIcon, EyeIcon,
PlusIcon, PlusIcon,
@@ -56,6 +57,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
</div> </div>
<div className="mt-4 sm:mt-0 sm:ml-16 sm:flex-none"> <div className="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
<Button <Button
icon={DocumentPlusIcon}
onClick={() => { onClick={() => {
document?.getElementById("fileUploadHelper")?.click(); document?.getElementById("fileUploadHelper")?.click();
}} }}