Skip to content

Commit

Permalink
Started with pages
Browse files Browse the repository at this point in the history
  • Loading branch information
AkkilMG committed Oct 12, 2024
2 parents 821d7d6 + b439ea3 commit 04aa33a
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 0 deletions.
12 changes: 12 additions & 0 deletions client/src/app/verify/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@




export default function VerifyPage() {
return (
<div>
<h1>Verify your email</h1>
<p>Please check your email to verify your account</p>
</div>
);
}
11 changes: 11 additions & 0 deletions client/src/component/home/form.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@



export default function CertificateForm() {
return (
<div>
<h1>Verify your email</h1>
<p>Please check your email to verify your account</p>
</div>
);
}
11 changes: 11 additions & 0 deletions client/src/component/verify/form.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@



export default function VerifyForm() {
return (
<div>
<h1>Verify your email</h1>
<p>Please check your email to verify your account</p>
</div>
);
}
12 changes: 12 additions & 0 deletions run.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change directory to client
cd client
# Start Next.js development server
Start-Process -NoNewWindow -FilePath "npm" -ArgumentList "run dev"

# cd ../server
# Start Python application
Start-Process -NoNewWindow -FilePath "python" -ArgumentList "../server/main.py"

# Wait for both processes to exit
Wait-Process -Name "node"
Wait-Process -Name "python"
File renamed without changes.

0 comments on commit 04aa33a

Please sign in to comment.