Skip to content

Commit

Permalink
Update typography-variants.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosct committed Sep 5, 2024
1 parent fbb97b3 commit d270ba4
Showing 1 changed file with 75 additions and 14 deletions.
89 changes: 75 additions & 14 deletions docs-content/html/typography/typography-variants.tsx
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>
</>
);
}

0 comments on commit d270ba4

Please sign in to comment.