-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
23 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from "react" | ||
|
||
export default function HalfScreen() { | ||
|
||
return ( | ||
<div className="flex flex-col bg-custom-background w-full h-[20%] justify-center items-center sm:w-1/2 sm:h-full"> | ||
<div className="flex flex-row relative w-full h-[40%] justify-center sm:w-[17%] sm:h-[13%] sm:mb-[5%]"> | ||
<img src = '/MBBLogo.png' className="shrink-0 stroke-[2.1px] object-contain sm:stroke-[3px]"></img> | ||
</div> | ||
<div className="hidden sm:flex flex-col w-full h-[10%] justify-center shrink-0"> | ||
<p className="text-white text-center font-opensans text-[30px] font-bold leading-normal tracking-[0.9px] uppercase"> | ||
Motherhood | ||
</p> | ||
<p className="text-white text-center font-opensans text-[30px] font-bold leading-normal tracking-[0.9px] uppercase"> | ||
Beyond bars | ||
</p> | ||
</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