1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00

feat!: added cookie consent banner and management system

This commit is contained in:
2024-08-21 00:22:49 +00:00
parent dceb2e44b7
commit 67222999a9
10 changed files with 330 additions and 17 deletions
+10 -9
View File
@@ -2,13 +2,14 @@
# Copy this file to .env, .env.local, or .env.production and fill in the values
# Mail credentials for redirecting form inquiries (see app/_utils/sendInquiry.ts)
SMTP_HOST=mailserver # Address of your SMTP server
SMTP_PORT=port # Port of your SMTP server
SMTP_USER=username # Username of your email bot account (usually same, as email address)
SMTP_PASSWORD=password # Password of your email bot account
SMTP_FROM_EMAIL=email # Email address which will be displayed in "From" field
SMTP_TO_EMAIL=email # Email to which emails will be sent
SMTP_HOST=mailserver # Address of your SMTP server
SMTP_PORT=port # Port of your SMTP server
SMTP_USER=username # Username of your email bot account (usually same, as email address)
SMTP_PASSWORD=password # Password of your email bot account
SMTP_FROM_EMAIL=email # Email address which will be displayed in "From" field
SMTP_TO_EMAIL=email # Email to which emails will be sent
DOMAIN_NAME=example.com # Your domain name
RESUME_URL=URL # Location of the resume PDF
CLARITY_ID=string # Clarity Analytics ID (optional, remove to disable)
DOMAIN_NAME=example.com # Your domain name
RESUME_URL=URL # Location of the resume PDF
CLARITY_ID=string # Clarity Analytics ID (optional, remove to disable)
NEXT_PUBLIC_CLARITY_CONSENT=1 # 1 if you need to request explicit consent from user, 0 if not (requires CLARITY_ID)