-
Notifications
You must be signed in to change notification settings - Fork 6
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 #10 from Arnab7456/main
quiz page minimum demo
- Loading branch information
Showing
5 changed files
with
241 additions
and
50 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,15 @@ | ||
const Announcment = () => { | ||
return ( | ||
|
||
<div className="p-10"> | ||
<h2 className="text-3xl font-semibold mb-5">Latest Announcements</h2> | ||
<ul className="list-disc ml-5 space-y-2"> | ||
<li>Government introduces new tax reform policies.</li> | ||
<li>COVID-19 vaccination drive for all citizens.</li> | ||
<li>Upcoming elections scheduled for next month.</li> | ||
</ul> | ||
</div> | ||
) | ||
} | ||
|
||
export default Announcment |
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,10 @@ | ||
const Banner = () => { | ||
return ( | ||
<div className="bg-blue-600 text-white p-10 text-center"> | ||
<h1 className="text-4xl font-bold">Welcome to the Central Government Portal</h1> | ||
<p className="mt-4 text-lg">Providing services and information to all citizens.</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Banner; |
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
Oops, something went wrong.