-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alireza Akbarzadeh
authored and
Alireza Akbarzadeh
committed
Apr 24, 2024
1 parent
a0a675d
commit 5ced292
Showing
13 changed files
with
70 additions
and
7 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,19 @@ | ||
export function Development(): JSX.Element { | ||
return ( | ||
<div className="min-h-screen flex items-center justify-center bg-gray-100"> | ||
<div className="max-w-md py-8 px-6 bg-white shadow-lg rounded-lg"> | ||
<h2 className="text-3xl font-bold mb-6 text-center">Contribute View</h2> | ||
<p className="text-gray-700 text-center mb-8"> | ||
This page is currently under development. Stay tuned! | ||
</p> | ||
<div className="flex justify-center"> | ||
<img | ||
className="w-64 h-64 object-cover object-center rounded-full" | ||
src="/images/under_construction.svg" | ||
alt="Under Construction" | ||
/> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export { Button } from './ui/button/button'; | ||
export { Development } from './development'; |
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { Development } from 'components'; | ||
|
||
function AboutView() { | ||
return <div>AboutView</div>; | ||
return <Development />; | ||
} | ||
|
||
export default AboutView; |
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,5 +1,7 @@ | ||
import { Development } from 'components'; | ||
|
||
function ContactView() { | ||
return <div>ContactView</div>; | ||
return <Development />; | ||
} | ||
|
||
export default ContactView; |
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,5 @@ | ||
import { Development } from 'components'; | ||
|
||
export default function Contributeview(): JSX.Element { | ||
return <Development />; | ||
} |
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,5 +1,7 @@ | ||
import { Development } from 'components'; | ||
|
||
function FaqView() { | ||
return <div>FaqView</div>; | ||
return <Development />; | ||
} | ||
|
||
export default FaqView; |
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,7 +1,7 @@ | ||
import { HomeDomains } from 'domains'; | ||
import { Development } from 'components'; | ||
|
||
function HomeView() { | ||
return <HomeDomains />; | ||
return <Development />; | ||
} | ||
|
||
export default HomeView; |
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,5 @@ | ||
import { Development } from 'components'; | ||
|
||
export default function Licenseview(): JSX.Element { | ||
return <Development />; | ||
} |
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,5 +1,7 @@ | ||
import { Development } from 'components'; | ||
|
||
function ServicesView() { | ||
return <div>ServicesView</div>; | ||
return <Development />; | ||
} | ||
|
||
export default ServicesView; |
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,7 @@ | ||
import { Development } from 'components'; | ||
|
||
function StatusView() { | ||
return <Development />; | ||
} | ||
|
||
export default StatusView; |