Simple OG

Simple OG

Minimalism at its finest ✨

Inspired by Kit

Code

export default function SimpleOg({
  title,
  backgroundColor,
}: {
  title?: string;
  backgroundColor?: string;
}) {
  return (
    <div
      style={{
        display: "flex",
        flexDirection: "column",
        alignItems: "center",
        justifyContent: "center",
        width: "100%",
        height: "100%",
        backgroundColor,
        color: "white",
        padding: "60px",
      }}
    >
      <h1
        style={{
          fontSize: "72px",
          fontWeight: "bold",
          textAlign: "center",
          lineHeight: 1.1,
          letterSpacing: "-0.02em",
          fontFamily: "Geist",
        }}
      >
        {title}
      </h1>
    </div>
  );
}