Skip to content

Commit 7b2811e

Browse files
v0.0.6
1 parent 390ec51 commit 7b2811e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+413
-8077
lines changed

.DS_Store

4 KB
Binary file not shown.

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
with:
2424
deno-version: v2.x
2525

26+
- name: Install Dependencies
27+
run: "deno install --allow-scripts"
28+
2629
- name: Build step
2730
run: "deno task build"
2831

@@ -32,5 +35,3 @@ jobs:
3235
project: "lunchbox"
3336
entrypoint: "main.ts"
3437
root: "."
35-
36-

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Changelog
22

3-
## Working on
4-
5-
- Bringing the /www/ folder from the lunchbox repository.
3+
## Version History
64

7-
### Next up
5+
### v0.0.6
86

9-
## Version History
7+
- Added TailwindCSS v4, DiasyUI v5, and Lunchbox v3.
108

119
### v0.0.5
1210

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

components/Logo.tsx

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
export default function (props: { size?: number }) {
2+
const px = props.size ?? 128;
3+
const size = `${px}px`;
4+
const sizeStyles = { width: size, height: size };
5+
6+
const paths = {
7+
pulp:
8+
"M28.535 8.772c4.645 1.25-.365 5.695-4.303 8.536-3.732 2.692-6.606 4.21-7.923 4.83-.366.173-1.617-2.252-1.617-1 0 .417-.7 2.238-.934 2.326-1.365.512-4.223 1.29-5.835 1.29-3.491 0-1.923-4.754 3.014-9.122.892-.789 1.478-.645 2.283-.645-.537-.773-.534-.917.403-1.546C17.79 10.64 23 8.77 25.212 8.42c.366.014.82.35.82.629.41-.14 2.095-.388 2.503-.278Z",
9+
skin:
10+
"M34.092 8.845C38.929 20.652 34.092 27 30 30.5c1 3.5-2.986 4.222-4.5 2.5-4.457 1.537-13.512 1.487-20-5C2 24.5 4.73 16.714 14 11.5c8-4.5 16-7 20.092-2.655Z",
11+
juice:
12+
"M14 11.5c6.848-4.497 15.025-6.38 18.368-3.47C37.5 12.5 21.5 22.612 15.5 25c-6.5 2.587-3 8.5-6.5 8.5-3 0-2.5-4-5.183-7.75C2.232 23.535 6.16 16.648 14 11.5Z",
13+
};
14+
15+
return (
16+
<div class="relative" style={sizeStyles}>
17+
<svg
18+
width="100%"
19+
height="100%"
20+
viewBox="0 0 40 40"
21+
fill="none"
22+
xmlns="http://www.w3.org/2000/svg"
23+
id="logo"
24+
>
25+
<defs>
26+
<clipPath id="skinClip" clipPathUnits="objectBoundingBox">
27+
<path d={paths.skin} transform="scale(.025)" />
28+
<path d={paths.juice} transform="scale(.025)" />
29+
</clipPath>
30+
</defs>
31+
32+
<path d={paths.skin} fill="var(--color-success)" />
33+
<path
34+
d={paths.juice}
35+
fill="var(--color-primary)"
36+
stroke="var(--color-success)"
37+
/>
38+
<path d={paths.pulp} fill="var(--color-accent)" />
39+
<path
40+
d="M14.297 16.49c.985-.747 1.644-1.01 2.099-2.526.566.121.841-.08 1.29-.701.324.466 1.657.608 2.453.701-.715.451-1.057.852-1.452 2.106-1.464-.611-3.167-.302-4.39.42Z"
41+
fill="var(--color-primary)"
42+
/>
43+
</svg>
44+
45+
<div
46+
class="absolute inset-0"
47+
style={{ clipPath: "url(#skinClip)" }}
48+
>
49+
<div class="noise w-full h-full" />
50+
</div>
51+
</div>
52+
);
53+
}

components/lunchbox/atoms/Aside.tsx

Lines changed: 0 additions & 26 deletions
This file was deleted.

components/lunchbox/atoms/Button.tsx

Lines changed: 0 additions & 105 deletions
This file was deleted.

components/lunchbox/atoms/Code.tsx

Lines changed: 0 additions & 91 deletions
This file was deleted.

components/lunchbox/atoms/Details.tsx

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)