Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/(pages)/(public)/(home)/components/reviews.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { CustomerReviewCard } from "@/components/customer-review";
export const ReviewsList = () => (
<DisplayResource
Component={CustomerReviewCard}
className="pb-40"
data={[
{
content:
Expand Down
8 changes: 4 additions & 4 deletions src/app/(pages)/(public)/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async function Home() {
smoothies: "/NEW-CATEG-ITEM-11.png",
snacks: "/NEW-CATEG-ITEM-12.png",
})}
speed={25}
speed={35}
/>
<RecipeDisplayBlock
title={"Currently Hot"}
Expand All @@ -44,12 +44,12 @@ export default async function Home() {
Or looking for more recipes?
</h4>
<div className="flex gap-5 uppercase font-extrabold">
<Button as="link" shape="square" href="/recipes/browse">
<Button as="link" shape="square" href="/browse">
Browse recipes
</Button>
<Button
as="link"
href="/recipes/create"
href="/create"
variant="primary"
shape="square"
>
Expand All @@ -63,7 +63,7 @@ export default async function Home() {
</div>
<div className="aspect-[720/660] bg-cover bg-no-repeat home-food-collage-for-hero-bg" />
</section>
<section className="w-full flex gap-20 items=center justify-center p-20 pb-40">
<section className="w-full flex gap-20 items=center justify-center p-20">
{[
["/tiktok-card.png", "#"],
["/instagram-card.png", "https://www.instagram.com/flavedotee/"],
Expand Down
2 changes: 1 addition & 1 deletion src/app/(pages)/(public)/browse/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default async function Browse() {
smoothies: "/NEW-CATEG-ITEM-11.png",
snacks: "/NEW-CATEG-ITEM-12.png",
})}
speed={25}
speed={35}
/>
<RecipeDisplayBlock
title={"extra-spicy foods"}
Expand Down
Loading