mirror of
https://github.com/tlsnotary/website.git
synced 2026-01-08 14:33:54 -05:00
22 lines
607 B
TypeScript
22 lines
607 B
TypeScript
import { classed } from "@tw-classed/react";
|
|
|
|
const Title = classed.h1("text-5xl font-black leading-1 text-primary md:text-6xl lg:text-[96px] lg:leading-[101px]");
|
|
|
|
const Subtitle = classed.h6("text-brown-50 font-black text-lg leading-none md:text-2xl lg:text-7xl md:leading-6");
|
|
|
|
const SectionTitle = classed.h6(
|
|
"font-semibold font-inter text-primary text-2xl leading-[24px] md:text-[56px] md:leading-[56px]"
|
|
);
|
|
|
|
const Paragraph = classed.span("text-primary text-sm md:text-xl leading-6");
|
|
|
|
const Label = {
|
|
displayName: "Label",
|
|
Title,
|
|
Subtitle,
|
|
SectionTitle,
|
|
Paragraph,
|
|
};
|
|
|
|
export { Label };
|