The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: center recipe description

+2 -2
+2 -2
apps/web/src/routes/_.(app)/recipes/$author/$rkey.tsx
··· 66 66 </Breadcrumb> 67 67 </div> 68 68 </header> 69 - <div className="flex flex-col gap-4 px-4 py-8 items-center"> 69 + <div className="flex flex-col gap-4 px-4 py-8 items-center max-w-2xl w-full mx-auto"> 70 70 <p className="text-muted-foreground"> 71 71 By @{recipe.author.handle} 72 72 </p> 73 73 <h1 className="scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl"> 74 74 {recipe.title} 75 75 </h1> 76 - <p className="leading-7"> 76 + <p className="leading-7 text-center"> 77 77 {recipe.description} 78 78 </p> 79 79 </div>