-
-
Notifications
You must be signed in to change notification settings - Fork 324
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
1 changed file
with
75 additions
and
14 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 |
---|---|---|
@@ -1,24 +1,85 @@ | ||
export function TypographyVariants() { | ||
return ( | ||
<div className="grid min-h-[140px] w-full place-items-center overflow-x-scroll rounded-lg p-6 lg:overflow-visible"> | ||
<h1 className="block font-sans text-5xl font-semibold leading-tight tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
<> | ||
<div className="text-center"> | ||
<h1 | ||
className="font-bold leading-snug tracking-tight text-slate-800 mx-auto my-6 w-full text-2xl lg:max-w-3xl lg:text-5xl" | ||
> | ||
H1 Get ready to experience a new level of performance and functionality. | ||
</h1> | ||
<h2 className="block font-sans text-4xl font-semibold leading-[1.3] tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
|
||
<h1 | ||
className="font-light leading-snug tracking-tight text-slate-800 mx-auto my-6 w-full text-2xl lg:max-w-3xl lg:text-5xl" | ||
> | ||
H1 Get ready to experience a new level of performance and functionality. | ||
</h1> | ||
|
||
<h2 | ||
className="font-bold leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-2xl lg:max-w-3xl lg:text-4xl" | ||
> | ||
H2 Get ready to experience a new level of performance and functionality. | ||
</h2> | ||
|
||
<h2 | ||
className="font-light leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-2xl lg:max-w-3xl lg:text-4xl" | ||
> | ||
H2 Get ready to experience a new level of performance and functionality. | ||
</h2> | ||
<h3 className="block font-sans text-3xl font-semibold leading-snug tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
|
||
|
||
<h3 | ||
className="font-semibold leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-xl max-w-lg lg:max-w-2xl lg:text-3xl" | ||
> | ||
H3 Get ready to experience a new level of performance and functionality. | ||
</h3> | ||
|
||
<h3 | ||
className="font-light leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-xl max-w-lg lg:max-w-2xl lg:text-3xl" | ||
> | ||
H3 Get ready to experience a new level of performance and functionality. | ||
</h3> | ||
<h4 className="block font-sans text-2xl font-semibold leading-snug tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
|
||
|
||
|
||
<h4 | ||
className="font-semibold leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-lg max-w-md lg:max-w-xl lg:text-2xl" | ||
> | ||
H4 Get ready to experience a new level of performance and functionality. | ||
</h4> | ||
<h5 className="block font-sans text-xl font-semibold leading-snug tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
|
||
<h4 | ||
className="font-light leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-lg max-w-md lg:max-w-xl lg:text-2xl" | ||
> | ||
H4 Get ready to experience a new level of performance and functionality. | ||
</h4> | ||
|
||
|
||
|
||
<h5 | ||
className="font-semibold leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-base max-w-sm lg:max-w-lg lg:text-xl" | ||
> | ||
H5 Get ready to experience a new level of performance and functionality. | ||
</h5> | ||
|
||
<h5 | ||
className="font-light leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-base max-w-sm lg:max-w-lg lg:text-xl" | ||
> | ||
H5 Get ready to experience a new level of performance and functionality. | ||
</h5> | ||
<h6 className="block font-sans text-base font-semibold leading-relaxed tracking-normal text-inherit antialiased"> | ||
Material Tailwind | ||
|
||
|
||
<h6 | ||
className="font-bold leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-sm max-w-xs lg:max-w-md lg:text-lg" | ||
> | ||
H6 Get ready to experience a new level of performance and functionality. | ||
</h6> | ||
|
||
<h6 | ||
className="font-light leading-snug tracking-normal text-slate-800 mx-auto my-6 w-full text-sm max-w-xs lg:max-w-md lg:text-lg" | ||
> | ||
H6 Get ready to experience a new level of performance and functionality. | ||
</h6> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |