-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In this Pr i made all the routes necessary from the landing page , an…
…d i added some codes in the new pages and make half of the buttons navigate to their respective pages.
- Loading branch information
1 parent
1193942
commit bc73ca1
Showing
8 changed files
with
116 additions
and
37 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 React from 'react' | ||
|
||
const DMapPage = () => { | ||
return ( | ||
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>Making in Progress</div> | ||
) | ||
} | ||
|
||
export default DMapPage; | ||
|
||
|
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 BookingPage = () => { | ||
return ( | ||
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>Website is in Progress</div> | ||
) | ||
} | ||
|
||
export default BookingPage; | ||
|
||
|
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
|
||
import React from 'react' | ||
|
||
const contributor = () => { | ||
const Contributor = () => { | ||
return ( | ||
<div>contributor</div> | ||
) | ||
} | ||
|
||
export default contributor | ||
export default Contributor; |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import React from 'react' | ||
|
||
const navigation = () => { | ||
const NavigationPage = () => { | ||
return ( | ||
<div>navigation</div> | ||
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>Making in Progress</div> | ||
) | ||
} | ||
|
||
export default navigation | ||
export default NavigationPage; | ||
|
||
|
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 NotificationPage = () => { | ||
return ( | ||
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>Making in Progress</div> | ||
) | ||
} | ||
|
||
export default NotificationPage; | ||
|
||
|
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 SchedulePage = () => { | ||
return ( | ||
<div className='h-full w-full text-6xl text-center font-bold justify-between p-44 text-white'>Making in Progress</div> | ||
) | ||
} | ||
|
||
export default SchedulePage; | ||
|
||
|