Skip to content

Commit 3624427

Browse files
committedSep 10, 2024·
feat: remove desc arts, add dulche de leche petit gateau
1 parent dcbd9a9 commit 3624427

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed
 

‎app/arts/page.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ export default function Page() {
2929
thumbnail={art.thumbnail}
3030
isZoomed={false}
3131
isExternal={false}
32-
>
33-
<p className="text-sm text-gray-500">{art.description}</p>
34-
</Grid>
32+
/>
3533
);
3634
})}
3735
</div>

‎app/data/recipes.ts

+19
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,25 @@ const recipes: Recipe[] = [
5555
"Let cool before eating.",
5656
],
5757
},
58+
{
59+
id: "dulche-de-leche-petit-gateau",
60+
title: "Dulche de Leche Petit Gateau",
61+
thumbnail: "/petit-gateau.png",
62+
ingredients: [
63+
"300g dulce de leche",
64+
"1 egg",
65+
"2 egg yolks",
66+
"2 tablespoons of sugar (optional)",
67+
"30g of flour",
68+
"20g of butter",
69+
"Vanilla (to your taste)",
70+
],
71+
process: [
72+
"Mix everything in a bowl, bake at 240 degrees Celsius in the oven.",
73+
"The first time, bake one at a time until you find the necessary baking time to keep the center soft.",
74+
"The ideal point is when the edges are more set than the center, and the center is still soft to the touch.",
75+
],
76+
},
5877
];
5978

6079
export default recipes;

‎app/page.tsx

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
import { faChevronRight } from "@fortawesome/free-solid-svg-icons";
21
import dynamic from "next/dynamic";
3-
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
4-
import { Button, Divider, Link, Spacer } from "@nextui-org/react";
2+
import { Link, Spacer } from "@nextui-org/react";
53
import { Spinner } from "@nextui-org/react";
64

75
const VoxelScene = dynamic(() => import("@/app/ui/voxcel/scene"), {
@@ -20,7 +18,7 @@ export default function Page() {
2018
<Spacer y={6} />
2119

2220
<div>
23-
<p className="font-bold text-4xl">Welcome to my realm</p>
21+
<p className="font-bold text-4xl">Welcome!</p>
2422
<p className="font-light leading-7 text-md mt-6">
2523
Hi there, my name is Breno and I&apos;m a seasoned and product
2624
oriented software engineer. Over the past 10 years I worked in

‎public/petit-gateau.png

28.7 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.