Skip to content

Commit

Permalink
contact
Browse files Browse the repository at this point in the history
  • Loading branch information
prakashchokalingam committed Nov 21, 2024
1 parent d390292 commit 1b8738c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
run: npm ci

- name: Build with Next.js
env:
NEXT_PUBLIC_WHATSAPP_NUMBER: ${{ secrets.NEXT_PUBLIC_WHATSAPP_NUMBER }}
run: npm run build

- name: Add .nojekyll file
Expand Down
2 changes: 1 addition & 1 deletion components/webcored-landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export function WebcoredLanding() {

{/* WhatsApp FAB Button */}
<a
href="https://wa.me/1234567890"
href={`https://wa.me/${process.env.NEXT_PUBLIC_WHATSAPP_NUMBER}`}
target="_blank"
rel="noopener noreferrer"
className="fixed bottom-4 right-4 bg-green-500 text-white p-4 rounded-full shadow-lg hover:bg-green-600 transition-colors"
Expand Down

0 comments on commit 1b8738c

Please sign in to comment.