-
Notifications
You must be signed in to change notification settings - Fork 10
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 #30 from Krishna100604/main
navbar and 3 ways to download certificate
- Loading branch information
Showing
9 changed files
with
416 additions
and
150 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 @@ | ||
// About.js | ||
|
||
import React from 'react'; | ||
|
||
const About = () => { | ||
return ( | ||
<div className="min-h-screen flex flex-col justify-center items-center bg-gradient-to-br from-purple-200 to-pink-200"> | ||
<header className="text-center mb-8"> | ||
<h1 className="text-4xl font-bold">About Us</h1> | ||
<p className="mt-4 text-lg text-gray-700">Learn more about our company:</p> | ||
</header> | ||
<section className="max-w-3xl mx-auto mb-8"> | ||
<h2 className="text-2xl font-bold mb-4">Our Mission</h2> | ||
<p className="text-lg text-gray-800"> | ||
Description of your company's mission. | ||
</p> | ||
</section> | ||
<section className="max-w-3xl mx-auto mb-8"> | ||
<h2 className="text-2xl font-bold mb-4">Our Team</h2> | ||
<p className="text-lg text-gray-800"> | ||
Meet our dedicated team members. | ||
</p> | ||
</section> | ||
{/* Add more about us sections as needed */} | ||
</div> | ||
); | ||
}; | ||
|
||
export default About; |
Oops, something went wrong.