-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ update cypress tests and add about page
Changes include: - cypress/e2e/app.cy.ts: Update Cypress end-to-end tests - src/app/about/page.tsx: Add new About page - src/app/page.tsx: Modify existing page This commit Updates Cypress tests and adds About page for e2e test simulation.
- Loading branch information
1 parent
6aba3ff
commit 256c656
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import AboutComponent from '@/components/about/about-component' | ||
|
||
export default function About() { | ||
return ( | ||
<div className='flex h-screen min-h-screen flex-col items-center justify-center p-2'> | ||
<div className='flex flex-1 flex-col items-center justify-center p-20'> | ||
<AboutComponent /> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters