Logo
ogimagecn/logoFreeComponent
A centered brand Open Graph image with a logo tile, a large wordmark, and an optional tagline on a soft gradient field.
Live preview
live · rendered by the registry
Rendered by ogimagecn on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://ogimagecn.com/r/logo.jsonSource
1export interface LogoProps {2 brand: string;3 tagline?: string;4 monogram?: string;5 background: string;6 logo?: string;7}89export const Logo = ({10 brand,11 tagline,12 monogram,13 background,14 logo = "",15}: LogoProps) => {16 const isColor = background.startsWith("#");1718 return (19 <div20 style={{21 alignItems: "center",22 backgroundColor: isColor ? background : "#09090b",23 backgroundImage: isColor24 ? `radial-gradient(circle at 50% 50%, rgba(124,58,237,0.2), transparent 60%)`25 : background,26 color: "#fafafa",27 display: "flex",28 flexDirection: "column",29 height: "100%",30 justifyContent: "center",31 width: "100%",32 }}33 >34 {logo ? (35 <img36 alt=""37 height={140}38 src={logo}39 width={140}40 style={{41 borderRadius: "28px",42 objectFit: "contain",43 }}44 />45 ) : (46 <div47 style={{48 alignItems: "center",49 backgroundColor: "#7c3aed",50 borderRadius: "28px",51 boxShadow: "0 24px 80px rgba(124,58,237,0.33)",52 color: "#ffffff",53 display: "flex",54 fontSize: "72px",55 fontWeight: 800,56 height: "140px",57 justifyContent: "center",58 width: "140px",59 }}60 >61 {monogram}62 </div>63 )}6465 <div66 style={{67 display: "flex",68 fontSize: "96px",69 fontWeight: 800,70 letterSpacing: "-0.04em",71 marginTop: "44px",72 }}73 >74 {brand}75 </div>7677 {tagline ? (78 <div79 style={{80 color: "#a1a1aa",81 display: "flex",82 fontSize: "32px",83 marginTop: "16px",84 }}85 >86 {tagline}87 </div>88 ) : null}89 </div>90 );91};
Files it writes
More from ogimagecn
All 22 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blogblog | ogimagecn | Components | Free | no deps | |
| Changelogchangelog | ogimagecn | Components | Free | no deps | |
| Editorialeditorial | ogimagecn | Components | Free | no deps | |
| Eventevent | ogimagecn | Components | Free | no deps | |
| Gridgrid | ogimagecn | Components | Free | no deps | |
| Ownerowner | ogimagecn | Components | Free | no deps | |
| Photophoto | ogimagecn | Components | Free | no deps | |
| Productproduct | ogimagecn | Components | Free | no deps |
