Quote
ogimagecn/quoteFreeComponent
A testimonial / tweet-style Open Graph image with a large quote and an author row.
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/quote.jsonSource
1export interface QuoteProps {2 quote: string;3 author: string;4 handle: string;5 avatar?: string;6}78const initials = (name: string) =>9 name10 .split(" ")11 .map((part) => part.charAt(0))12 .slice(0, 2)13 .join("")14 .toUpperCase();1516export const Quote = ({ quote, author, handle, avatar }: QuoteProps) => (17 <div18 style={{19 backgroundColor: "#18181b",20 color: "#fafafa",21 display: "flex",22 flexDirection: "column",23 height: "100%",24 justifyContent: "center",25 padding: "96px",26 width: "100%",27 }}28 >29 <div30 style={{31 color: "#f472b6",32 display: "flex",33 fontSize: "140px",34 fontWeight: 800,35 lineHeight: 0.8,36 }}37 >38 “39 </div>4041 <div42 style={{43 display: "flex",44 fontSize: quote.length > 90 ? 52 : 64,45 fontWeight: 600,46 letterSpacing: "-0.02em",47 lineHeight: 1.2,48 marginTop: "8px",49 maxWidth: "1000px",50 }}51 >52 {quote}53 </div>5455 <div56 style={{57 alignItems: "center",58 display: "flex",59 gap: "20px",60 marginTop: "56px",61 }}62 >63 {avatar ? (64 <img65 alt={author}66 src={avatar}67 width={76}68 height={76}69 style={{ borderRadius: "999px" }}70 />71 ) : (72 <div73 style={{74 alignItems: "center",75 backgroundColor: "#f472b6",76 borderRadius: "999px",77 color: "#18181b",78 display: "flex",79 fontSize: "32px",80 fontWeight: 700,81 height: "76px",82 justifyContent: "center",83 width: "76px",84 }}85 >86 {initials(author)}87 </div>88 )}89 <div style={{ display: "flex", flexDirection: "column" }}>90 <div style={{ display: "flex", fontSize: "32px", fontWeight: 600 }}>91 {author}92 </div>93 <div style={{ color: "#a1a1aa", display: "flex", fontSize: "26px" }}>94 {handle}95 </div>96 </div>97 </div>98 </div>99);
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 | |
| Logologo | ogimagecn | Components | Free | no deps | |
| Ownerowner | ogimagecn | Components | Free | no deps | |
| Photophoto | ogimagecn | Components | Free | no deps |
