Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
NEXT_PUBLIC_FORMSPREE_ID=
NEXT_PUBLIC_RECAPTCHA_SITE_KEY=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel
Expand Down
166 changes: 142 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@types/react-google-recaptcha": "^2.1.5",
"next": "12.3.1",
"react": "18.1.0",
"react-dom": "18.1.0"
"react-dom": "18.1.0",
"react-google-recaptcha": "^2.1.0"
},
"devDependencies": {
"@formspree/react": "^2.4.1",
"@playwright/test": "1.27.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@types/react": "18.0.21",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ContactUs/ContactUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function ContactUs() {
if (!screenWidth) return null;

return (
<section id="contact-us" className="min-h-screen bg-white pb-20">
<section id="contact-us" className="bg-white pb-20">
<h2 className="font-montserrat text-base uppercase w-fit mx-auto py-5">
Contact us
</h2>
Expand Down
Loading