Skip to content
Open
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
bun-debug.log*

node_modules
dist
Expand Down
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Personal Portfolio License (PPL) v1.0

Copyright (c) 2026 Moncy Yohannan
Copyright (c) 2026 Anirudh Saxena

This project is made available publicly for learning and reference purposes only.

Expand All @@ -20,7 +20,7 @@ You may NOT:

## Attribution
If you use any part of this project, you must give clear credit to:
Moncy Yohannan” with a link to the original source.
Anirudh Saxena” with a link to the original source.

## Assets & 3D Content
All 3D assets, including the avatar, models, textures, and visual elements are proprietary and NOT part of this license.
Expand All @@ -31,4 +31,4 @@ They may not be copied, used, or redistributed under any circumstances without e
Unauthorized use may result in DMCA takedown requests or legal action.

## Contact
connect@moncy.dev / www.moncy.dev
asaxena2_be23@thapar.edu
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you use parts of the code, you must provide proper credit linking back to the

Build your own version — don’t just copy.

Moncy Yohannan
Anirudh Saxena

---

Expand All @@ -39,6 +39,26 @@ React • TypeScript • GSAP • Three.js • WebGL • HTML • CSS • JavaSc

---

## 🏃 Getting Started

This project uses [Bun](https://bun.sh) as the package manager and runtime.

```bash
# Install dependencies
bun install

# Start the dev server
bun run dev

# Build for production
bun run build

# Preview the production build
bun run preview
```

---

## 🎨 Assets Usage

Some 3D assets included in this repository are free to use for learning purposes.
Expand Down
650 changes: 650 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moncy Yohannan - Creative Developer | Designer</title>
<title>Anirudh Saxena - Full-Stack Engineer | Web Developer</title>
</head>
<body>
<div id="root"></div>
Expand Down
Loading