diff --git a/README.md b/README.md index 084ae6d..5cc7da1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # DISCLAIMER -### We have ended up rewriting the commit history due to a faulty commit, let's take this as a learning to double check our triple checks before making a PR, just to get a PR merged you don't have to rush, you have ample time to work on an issue once assigned, depending on the magnitude of the issue, anyways due to the same you have to take a fresh fork if you are a recurring contributor and if you are a new contributor, do keep this in mind and start contributing, you are good to go +### We have ended up rewriting the commit history due to a faulty commit, let's take this as a learning to double check our triple checks before making a PR, just to get a PR merged you don't have to rush, you have ample time to work on an issue once assigned, depending on the magnitude of the issue, anyways due to the same you have to take a fresh fork if you are a recurring contributor and if you are a new contributor, do keep this in mind and start contributing, you are good to go # Project Name: Tiplink @@ -45,14 +45,14 @@ Using Docker: ```bash cd tiplink ``` -3. Create a .env file in the root folder of your project. Update it following the convention of the .env.example file. +3. Create a .env file in the root folder of your project. Update it following the convention of the .env.example file. Here's an example: ```bash CLIENT_SECRET = '' #Get it from Google developers console CLIENT_ID = '' #Get it from Google developers console - NEXTAUTH_SECRET = '' + NEXTAUTH_SECRET = '' NEXTAUTH_URL = '' #Your frontend base URL - #DATABASE_URL = 'postgresql://postgres:password@localhost:5432/mydatabase' + #DATABASE_URL = 'postgresql://postgres:password@localhost:5432/mydatabase' DATABASE_URL = 'postgresql://postgres:password@postgres:5432/mydatabase' #Use this for setting up docker NEXT_PUBLIC_SOLANA_RPC = '' #Your Custom Solana RPC URL ``` @@ -72,11 +72,12 @@ Using Docker: ```bash docker compose up ``` -Without Docker + Without Docker ### Without Docker 1. clone the repository: + ```bash git clone https://github.com/code100x/tiplink.git ``` @@ -122,12 +123,14 @@ Contributions are welcome! If you'd like to contribute to the Tiplink project, p ## Resource Reference Section for various pieces of the project -### For reading up on AWS KMS: +### For reading up on AWS KMS: + - [AWS KMS Docs](https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/js-examples.html) - [Data Encryption on AWS](https://enlear.academy/data-encryption-on-aws-8d6be6033351) - [AWS Encryption SDK Guide](https://enlear.academy/aws-encryption-sdk-d38bfae40e9f) -### For reading up on GCP KMS: +### For reading up on GCP KMS: + - [GCP KMS Docs](https://cloud.google.com/nodejs/docs/reference/kms/latest) - [Video Guide for GCP on Google Cloud Tech](https://www.youtube.com/watch?v=WKZC93y-aWI) @@ -138,9 +141,9 @@ Please take an updated pull from the dev branch, and request branches for furthe - **main** - Stable branch - **dev** - Branch for all the developer changes (Where your code will reside before moving to production) - **dev-backend**- Branch for all developer changes in the backend -- **dev-backend/*** - Branch for changes in specific features within the backend +- **dev-backend/\*** - Branch for changes in specific features within the backend - **dev-frontend** - Branch for all developer changes in the frontend -- **dev-frontend/*** - Branch for changes in specific features within the frontend +- **dev-frontend/\*** - Branch for changes in specific features within the frontend ## License diff --git a/package-lock.json b/package-lock.json index d80e3e5..8f648b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,6 +15,7 @@ "@prisma/client": "^5.17.0", "@radix-ui/react-accordion": "^1.2.0", "@radix-ui/react-dropdown-menu": "^2.1.1", + "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.1.0", "@radix-ui/react-slot": "^1.1.0", "@solana/wallet-adapter-react": "^0.15.35", @@ -4915,6 +4916,15 @@ } } }, + "node_modules/@radix-ui/react-icons": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.0.tgz", + "integrity": "sha512-jQxj/0LKgp+j9BiTXz3O3sgs26RNet2iLWmsPyRz2SIcR4q/4SbazXfnYwbAr+vLYKSfc7qxzyGQA1HLlYiuNw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + } + }, "node_modules/@radix-ui/react-id": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz", diff --git a/package.json b/package.json index b48e2a2..05ae25e 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,7 @@ "@prisma/client": "^5.17.0", "@radix-ui/react-accordion": "^1.2.0", "@radix-ui/react-dropdown-menu": "^2.1.1", + "@radix-ui/react-icons": "^1.3.0", "@radix-ui/react-label": "^2.1.0", "@radix-ui/react-slot": "^1.1.0", "@solana/wallet-adapter-react": "^0.15.35", diff --git a/public/grid3.avif b/public/grid3.avif new file mode 100644 index 0000000..95ad6c6 Binary files /dev/null and b/public/grid3.avif differ diff --git a/public/grid4.avif b/public/grid4.avif new file mode 100644 index 0000000..445007f Binary files /dev/null and b/public/grid4.avif differ diff --git a/public/grid5.avif b/public/grid5.avif new file mode 100644 index 0000000..404db13 Binary files /dev/null and b/public/grid5.avif differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 0a6d533..2208fe1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,13 +1,16 @@ import { Footer } from '@/components/Appbar/Footer' import Home from '@/components/Home/Home' import { ScrollToTopButton } from '@/components/ui/scroll-to-top-button' +import WaveBackground from '@/components/WaveBackground' export default function Page() { return ( <> - -