forked from dhairyagothi/StationGuide
-
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.
Merge pull request dhairyagothi#296 from Premkolte/main
Navbar button Routes and Pages.
- Loading branch information
Showing
9 changed files
with
105 additions
and
21 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
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 React from 'react'; | ||
|
||
const AboutUs = () => { | ||
return ( | ||
<div className="min-h-screen flex justify-center items-center bg-blue-100"> | ||
<h1 className="text-3xl font-semibold text-blue-900">About Us Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AboutUs; |
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 React from 'react'; | ||
|
||
const Emergency = () => { | ||
return ( | ||
<div className="min-h-screen flex justify-center items-center bg-blue-100"> | ||
<h1 className="text-3xl font-semibold text-blue-900">Emergency Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Emergency; |
Empty file.
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 React from 'react'; | ||
|
||
const HelpAndSupport = () => { | ||
return ( | ||
<div className="min-h-screen flex justify-center items-center bg-blue-100"> | ||
<h1 className="text-3xl font-semibold text-blue-900">Help and Support Page</h1> | ||
</div> | ||
); | ||
}; | ||
|
||
export default HelpAndSupport; |
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,13 @@ | ||
import React from 'react'; | ||
|
||
const Payment = () => { | ||
return ( | ||
<div className="min-h-screen flex justify-center items-center bg-blue-100"> | ||
<h1 className="text-3xl font-semibold text-blue-900">Payment Page</h1> | ||
</div> | ||
|
||
|
||
); | ||
}; | ||
|
||
export default Payment; |
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