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
2 changes: 2 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,13 @@ Server actions are organized in `src/lib/actions/`:

- `/` - Public landing page
- `/login` - Login page (redirects to /manage if authenticated)
- `/register` - User registration page
- `/scan` - QR code scanner for tag verification
- `/verify/[code]` - Tag verification page with product details
- `/explorer` - Blockchain transaction explorer
- `/explorer/tx/[hash]` - Transaction detail page
- `/support` - Web3 support tickets (NFT holders connect wallet to submit issues)
- `/faqs` - Frequently asked questions page
- `/docs` - Swagger API documentation UI

**API Routes:**
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"@aws-sdk/s3-request-presigner": "^3.705.0",
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@google/genai": "^1.30.0",
"@gsap/react": "^2.1.2",
"@prisma/client": "^6.1.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
Expand All @@ -51,7 +50,6 @@
"clsx": "^2.1.1",
"ethers": "^6.13.4",
"framer-motion": "^12.23.25",
"gsap": "^3.13.0",
"html5-qrcode": "^2.3.8",
"lucide-react": "^0.555.0",
"mapbox-gl": "^3.16.0",
Expand Down
7 changes: 0 additions & 7 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import { motion } from 'framer-motion';
import { Navbar } from '@/components/landing/Navbar';
import { Hero } from '@/components/landing/Hero';
import { RocketJourney } from '@/components/landing/RocketJourney';
import { Features } from '@/components/landing/Features';
import { Industries } from '@/components/landing/Industries';
import { FAQ } from '@/components/landing/FAQ';
Expand Down Expand Up @@ -45,12 +44,6 @@ export default function Home() {

<Navbar />
<Hero />

{/* Rocket Journey Section */}
<section className="relative z-10 bg-gradient-to-b from-white via-[#2B4C7E]/5 to-[#0C2340]/10">
<RocketJourney />
</section>

<Features />
<Industries />
<FAQ />
Expand Down
Loading
Loading