Skip to content

Commit

Permalink
vercel vite plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Dec 22, 2024
1 parent 49b1139 commit aeff0be
Show file tree
Hide file tree
Showing 20 changed files with 259 additions and 13 deletions.
6 changes: 3 additions & 3 deletions api/send-telegram.ts → _api/send-telegram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export default async function handler(
}

try {
const { projectName, description, timeline, customTimeline, contact } = req.body;
const { projectName, description, timeline, customTimeline, email } = req.body;

// Validate required fields
if (!projectName || !description || !contact || !(timeline || customTimeline)) {
if (!projectName || !description || !email || !(timeline || customTimeline)) {
return res.status(400).json({ message: 'Missing required fields' });
}

Expand All @@ -26,7 +26,7 @@ export default async function handler(
⏰ Timeline: ${timeline === 'custom' ? customTimeline : timeline}
📧 Contact: ${contact}
📧 Contact Email: ${email}
`;

// Send to Telegram
Expand Down
Binary file modified bun.lockb
Binary file not shown.
Binary file added dist/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions dist/assets/BuilderPage-r8Yi6Fa0.js

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

6 changes: 6 additions & 0 deletions dist/assets/Home-CvnzB4Tq.js

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

26 changes: 26 additions & 0 deletions dist/assets/Process-CEoypZlg.js

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

Loading

0 comments on commit aeff0be

Please sign in to comment.