-
-
Notifications
You must be signed in to change notification settings - Fork 864
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix navbar for consistent styling * Update homepage with minimal design * Fix docs page styling to be consistent with other docs websites * Update activeBasePath * Add footer * Make files prettier * Implement coderabbit suggestions * "Implement coderabbit suggestions" * Fix height issue of the hero section * Make code prettier * Update with coderabbit suggestion * Update styling according to coderabbit * Remove unused files * Update with coderabbit suggestion * Refactor suggestion by coderabbit * Run prettier for updated component
- Loading branch information
Showing
7 changed files
with
341 additions
and
110 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,23 @@ | ||
import React from 'react'; | ||
import HomeCallToAction from '../../utils/HomeCallToAction'; | ||
|
||
function HeaderHero() { | ||
return ( | ||
<section className="HeaderHero" role="banner"> | ||
<h1 className="title" id="main-title"> | ||
Talawa | ||
</h1> | ||
<h2 className="tagline" aria-describedby="main-title"> | ||
Admin Docs | ||
</h2> | ||
<p className="description"> | ||
Web based administrative dashboard for the Talawa mobile app | ||
</p> | ||
<div className="buttons" role="navigation" aria-label="Quick links"> | ||
<HomeCallToAction /> | ||
</div> | ||
</section> | ||
); | ||
} | ||
|
||
export default HeaderHero; |
Oops, something went wrong.