-
Notifications
You must be signed in to change notification settings - Fork 113
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 #147 from Raja-Abrar-Khan/newbranch
In this Pr i made all the routes necessary from the landing page , and add some code in the new pages that were empty for initial period , and i made half of the buttons go to their respective routes
- Loading branch information
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; | ||
|
||
|