adding a webform

This commit is contained in:
Kismet Hasanaj
2026-05-03 01:39:28 +02:00
parent e3d7e938cc
commit fa7be4c426
4 changed files with 164 additions and 24 deletions
+14
View File
@@ -82,6 +82,20 @@ Clone the Gitea repo:
git clone http://10.10.10.11:3000/kismet.hasanaj/novarix.uk.git /var/www/novarix.uk
```
If you want the built-in contact form to send mail through Web3Forms, create a
local environment file before building:
```bash
cd /var/www/novarix.uk
cp .env.example .env.local
```
Then edit `.env.local` and set:
```bash
NEXT_PUBLIC_WEB3FORMS_ACCESS_KEY=your_web3forms_access_key
```
Install the website dependencies and build the static site:
```bash