Skip to content
Merged

Logo #19

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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,5 @@ cython_debug/
.pypirc
data/*
testing.ipynb

.DS_Store
Binary file added logo/logo-animated.mp4
Binary file not shown.
Binary file added logo/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions logo/source/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
12 changes: 12 additions & 0 deletions logo/source/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Source code to generate logo

- Node v22+
- Bun v1.3+

```shell
bun install
bun run dev
```

- Right click to save as static image
- press r to trigger video export
266 changes: 266 additions & 0 deletions logo/source/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions logo/source/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
29 changes: 29 additions & 0 deletions logo/source/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@react-three/postprocessing": "^3.0.4",
"@reactuses/core": "^6.3.1",
"@types/three": "^0.184.1",
"canvas-record": "^5.5.1",
"gsap": "^3.15.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"three": "^0.184.0",
"valtio": "^2.3.2"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "^6.0.3",
"vite": "^8.0.12"
}
}
Loading
Loading