Skip to content
Merged
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
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: Bug report
about: Report a bug or broken behaviour on the BitSleuth website
title: "fix: "
labels: bug
assignees: ""
---

## Describe the bug

A clear and concise description of what the bug is.

## Steps to reproduce

1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error

## Expected behaviour

What you expected to happen.

## Actual behaviour

What actually happened.

## Screenshots

If applicable, add screenshots to help explain the problem.

## Environment

- **Browser**: (e.g. Chrome 124, Safari 17)
- **Device / OS**: (e.g. iPhone 15 / iOS 17, Windows 11)
- **Page / URL**: (e.g. /glossary/bitcoin-address)

## Additional context

Any other context about the problem (console errors, network errors, etc.).
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Feature request
about: Suggest a new feature or improvement for the BitSleuth website
title: "feat: "
labels: enhancement
assignees: ""
---

## Problem / motivation

A clear and concise description of the problem this feature would solve, or the opportunity it addresses.

## Proposed solution

Describe the feature you'd like and how it should work.

## Alternatives considered

Any alternative approaches you've considered and why you ruled them out.

## Additional context

Mockups, screenshots, links to similar implementations, or any other context that would help evaluate the request.
36 changes: 36 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
## Description

Brief description of what this PR does and why.

## Type of change

- [ ] Bug fix
- [ ] New feature
- [ ] Documentation update
- [ ] Refactoring / code cleanup
- [ ] Performance improvement
- [ ] Other (describe below)

## Related issues

Closes # (issue number, if applicable)

## Testing

Describe how you tested these changes.

## Screenshots (if applicable)

Add screenshots for any UI changes.

## Checklist

- [ ] `npm run typecheck` passes
- [ ] `npm run lint` passes
- [ ] `npm run test` passes
- [ ] `npm run build` succeeds
- [ ] Responsive design tested (mobile, tablet, desktop)
- [ ] Dark and light mode tested
- [ ] No `console.log` statements left in production code
- [ ] SEO metadata added for any new pages
- [ ] Documentation updated if needed
3 changes: 3 additions & 0 deletions .github/workflows/copilot-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ on:
# branches:
# - main

permissions:
contents: read

jobs:
test-with-environment:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ If you need help:

## 📜 License

By contributing to BitSleuth Website, you agree that your contributions will be subject to the project's proprietary license. See `LICENSE` file for details.
By contributing to BitSleuth Website, you agree that your contributions will be licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). See the `LICENSE` file for details.

---

Expand Down
5 changes: 5 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
BitSleuth Website
Copyright (c) 2025 BitSleuth. All rights reserved.

SPDX-License-Identifier: AGPL-3.0-only

GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1066,11 +1066,9 @@ A: If you're adding new utility functions or business logic, yes. UI components

## 📄 License

**PROPRIETARY SOFTWARE** - Copyright (c) 2025 BitSleuth. All rights reserved.
Copyright (c) 2025 BitSleuth. Licensed under the [GNU Affero General Public License v3.0](./LICENSE).

This software is the proprietary and confidential information of BitSleuth.
It is provided solely for use by BitSleuth and its authorized personnel.
This software is not intended for public distribution or open source use.
You are free to use, study, modify, and distribute this software under the terms of the AGPL-3.0. Any modified version deployed over a network must also be made available under the same license.

For licensing inquiries, contact: legal@bitsleuth.ai

Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "nextn",
"version": "0.1.0",
"name": "bitsleuth-website",
"version": "0.2.0",
"description": "BitSleuth marketing and educational website for Bitcoin wallet analysis tools",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/BitSleuthAI/Website"
},
"private": true,
"packageManager": "npm@11.7.0",
"scripts": {
Expand Down