Skip to content

Commit

Permalink
[ci] update tree
Browse files Browse the repository at this point in the history
  • Loading branch information
trueberryless authored and github-actions[bot] committed Dec 2, 2024
1 parent c4b8b56 commit 2571170
Showing 1 changed file with 120 additions and 0 deletions.
120 changes: 120 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,126 @@ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deploym

## Project structure

```
.
├── .changeset
│ ├── README.md
│ └── config.json
├── .dockerignore
├── .github
│ ├── labeler.yaml
│ ├── readmetreerc.yaml
│ └── workflows
│ ├── deployment.yaml
│ ├── format.yaml
│ ├── generate-readme-tree.yaml
│ ├── labeler.yaml
│ ├── release.yaml
│ └── welcome-bot.yaml
├── .gitignore
├── .prettierignore
├── .prettierrc
├── Dockerfile
├── LICENSE
├── README.md
├── manifest
│ ├── certificate.yaml
│ ├── deployment.yaml
│ ├── ingress.yaml
│ ├── namespace.yaml
│ └── service.yaml
├── package.json
└── src
├── .eslintrc.json
├── app
│ ├── contact.tsx
│ ├── curriculum-vitae.tsx
│ ├── favicon.ico
│ ├── footer.tsx
│ ├── globals.css
│ ├── header.tsx
│ ├── images.tsx
│ ├── layout.tsx
│ ├── page.tsx
│ ├── projects.tsx
│ └── social-media.tsx
├── components
│ ├── index.ts
│ └── ui
│ ├── 3d-card.tsx
│ ├── animated-tooltip.tsx
│ ├── background-beams.tsx
│ ├── card-hover-effect.tsx
│ ├── globe.tsx
│ ├── google-gemini-effect.tsx
│ ├── infinite-moving-cards.tsx
│ ├── parallax-scroll.tsx
│ ├── sparkles.tsx
│ ├── tracing-beam.tsx
│ └── typewriter-effect.tsx
├── data
│ └── globe.json
├── next-env.d.ts
├── next.config.mjs
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
│ ├── cv
│ │ ├── education.jpg
│ │ ├── hobbies.jpg
│ │ └── work_experience.webp
│ ├── felix
│ │ ├── 0.jpg
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ └── 9.jpg
│ ├── logos
│ │ ├── codepen.png
│ │ ├── coolors.png
│ │ ├── docker.png
│ │ ├── editor_x.png
│ │ ├── figma.png
│ │ ├── fiverr.png
│ │ ├── flaticon.png
│ │ ├── flickr.png
│ │ ├── gamebanana.png
│ │ ├── github.png
│ │ ├── github.webp
│ │ ├── instagram.png
│ │ ├── lichess.png
│ │ ├── linkedin.png
│ │ ├── linktree.png
│ │ ├── monkeytype.png
│ │ ├── paypal.png
│ │ ├── pinterest.png
│ │ ├── quizlet.png
│ │ ├── reddit.png
│ │ ├── spotify.png
│ │ ├── stack-overflow.png
│ │ ├── tumblr.png
│ │ ├── twitch.png
│ │ ├── x.jpg
│ │ └── youtube.png
│ ├── next.svg
│ ├── projects
│ │ ├── mutanuq.png
│ │ └── true-tracker.png
│ └── vercel.svg
├── tailwind.config.ts
├── tsconfig.json
└── utils
└── cn.ts
```

## License

Licensed under the MIT license, Copyright © trueberryless.
Expand Down

0 comments on commit 2571170

Please sign in to comment.