-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
95deecb
commit d19514c
Showing
3 changed files
with
63 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
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,23 @@ | ||
function about() { | ||
return <div>about</div>; | ||
import Gallery from "@components/components/Gallery"; | ||
|
||
function About() { | ||
return ( | ||
<main className="md:mx-28 mx-2"> | ||
<section className="mb-7 md:mt-14"> | ||
<h1 className="text-3xl font-medium">Meet Our Team</h1> | ||
<p className="text-gray-400 md:w-[80ch] leading-7 mt-2"> | ||
The Indic Subtitler team spearheads a movement aimed at facilitating | ||
the seamless generation of Indic subtitles. We value{" "} | ||
<span className="text-primary-900 font-medium">Open Source</span>,{" "} | ||
<span className="text-primary-900 font-medium">Learning</span>, and{" "} | ||
<span className="text-primary-900 font-medium"> | ||
Open Communication | ||
</span> | ||
</p> | ||
</section> | ||
<Gallery /> | ||
</main> | ||
); | ||
} | ||
|
||
export default about; | ||
export default About; |