Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

23 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

AnimeTarget | Millennium Archive ๐Ÿ›ฐ๏ธ

AnimeTarget Banner

The Ultimate Anime Tracking Platform

Next.js TypeScript Supabase Tailwind CSS

Live Demo ยท Report Bug ยท Request Feature


๐ŸŒŸ Features

๐ŸŽฏ Core Functionality

  • 10,000+ Anime Archive - Comprehensive database with real-time AniList synchronization
  • Neural Recommendations - AI-powered suggestions based on your watch history and genre preferences
  • Multi-Status Tracking - Organize anime into Watching, Completed, Planning, On-Hold, and Dropped
  • Advanced Search & Filters - Find anime by title, genre, year, score, and more
  • Dual-View Library - Switch between grid and list layouts instantly

๐ŸŽจ Premium Design

  • Glass-Industrial Aesthetic - Modern glassmorphism with industrial command-center vibes
  • Multi-Chromatic Themes - Choose from Millennium (default), Cyberpunk, and Monochrome
  • Cinematic Loading States - Smooth skeleton screens and scanning animations
  • Micro-Animations - Staggered entries, hover blooms, and floating badges
  • Fully Responsive - Optimized for desktop, tablet, and mobile

๐Ÿš€ Advanced Features

  • Spotlight Carousel - Auto-rotating hero showcase of trending anime
  • Neural Reroll - Get fresh recommendations with high-entropy randomization
  • Mission Control - Import/export your anime lists with diff detection
  • Real-Time Sync - Dual-table architecture ensures 100% data integrity
  • Server-Side Pagination - Lightning-fast performance even with massive datasets

๐Ÿ› ๏ธ Tech Stack

Category Technology
Framework Next.js 16.1 (App Router)
Language TypeScript 5.0
Database Supabase (PostgreSQL)
Styling Tailwind CSS 4.0
Animations Framer Motion
Data Source AniList GraphQL API
Deployment Vercel / Cloudflare Pages

๐Ÿš€ Quick Start

Prerequisites

  • Node.js 20+ and npm/yarn/pnpm
  • Supabase account
  • AniList API access (free)

Installation

  1. Clone the repository

    git clone https://github.com/voidx3d/anime-tracker.git
    cd anime-tracker
  2. Install dependencies

    npm install
    # or
    yarn install
    # or
    pnpm install
  3. Set up environment variables

    Create a .env.local file in the root directory:

    NEXT_PUBLIC_SUPABASE_URL=your_supabase_project_url
    SUPABASE_SERVICE_KEY=your_supabase_service_key
  4. Set up the database

    Run the SQL schema in your Supabase project:

    -- See docs/database-schema.sql for the complete schema
  5. Run the development server

    npm run dev
    # or
    yarn dev
    # or
    pnpm dev
  6. Open your browser

    Navigate to http://localhost:3000


๐Ÿ“ Project Structure

anime-tracker/
โ”œโ”€โ”€ public/              # Static assets (favicon, images, manifest)
โ”œโ”€โ”€ scripts/             # Data ingestion and sync scripts
โ”‚   โ”œโ”€โ”€ scrape-anilist.ts
โ”‚   โ”œโ”€โ”€ surgical-sync.ts
โ”‚   โ””โ”€โ”€ final-extraction.ts
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ app/            # Next.js App Router pages
โ”‚   โ”‚   โ”œโ”€โ”€ anime/      # Anime detail pages
โ”‚   โ”‚   โ”œโ”€โ”€ library/    # Main library view
โ”‚   โ”‚   โ”œโ”€โ”€ suggestions/# Neural recommendations
โ”‚   โ”‚   โ”œโ”€โ”€ dashboard/  # Analytics dashboard
โ”‚   โ”‚   โ””โ”€โ”€ import/     # Mission Control (import/export)
โ”‚   โ”œโ”€โ”€ components/     # Reusable React components
โ”‚   โ”‚   โ”œโ”€โ”€ AnimeCard.tsx
โ”‚   โ”‚   โ”œโ”€โ”€ NeuralImage.tsx
โ”‚   โ”‚   โ”œโ”€โ”€ SpotlightCarousel.tsx
โ”‚   โ”‚   โ”œโ”€โ”€ NeuralSuggestions.tsx
โ”‚   โ”‚   โ””โ”€โ”€ ...
โ”‚   โ”œโ”€โ”€ lib/            # Utilities and helpers
โ”‚   โ”‚   โ”œโ”€โ”€ supabaseClient.ts
โ”‚   โ”‚   โ””โ”€โ”€ diffEngine.ts
โ”‚   โ””โ”€โ”€ types/          # TypeScript type definitions
โ”œโ”€โ”€ docs/               # Documentation
โ””โ”€โ”€ README.md

๐ŸŽฎ Usage

Tracking Anime

  1. Navigate to Library to view your collection
  2. Use the status tabs to filter by Watching, Completed, etc.
  3. Toggle between Grid and List views
  4. Click any anime card for detailed information

Neural Recommendations

  1. Visit the Suggestions page
  2. Click Reroll Strategy for fresh recommendations
  3. Recommendations are based on your completed/planned anime genres

Importing Data

  1. Go to Mission Control (Import page)
  2. Upload your AniList/MyAnimeList export JSON
  3. Review the diff and apply changes
  4. Your library will sync automatically

Switching Themes

  1. Click the theme toggle in the navbar
  2. Choose from Millennium, Cyberpunk, or Monochrome
  3. Your preference is saved to localStorage

๐Ÿ”ง Configuration

Database Schema

The application uses two main tables:

  • animes - Main anime archive with metadata and user status
  • user_anime_lists - Legacy repository for backward compatibility

See docs/database-schema.sql for the complete schema.

Environment Variables

Variable Description
NEXT_PUBLIC_SUPABASE_URL Your Supabase project URL
SUPABASE_SERVICE_KEY Supabase service role key (server-side only)

๐Ÿ“Š Performance

  • 10,000+ anime indexed and searchable
  • Server-side pagination for instant load times
  • Image optimization with Next.js Image component
  • Lazy loading for off-screen content
  • Efficient caching with Supabase query optimization

๐Ÿšข Deployment

Vercel (Recommended)

vercel --prod

Cloudflare Pages

npm run build
npx wrangler pages deploy .next

Environment Setup

Ensure all environment variables are configured in your deployment platform.


๐Ÿค Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.


๐Ÿ™ Acknowledgments

  • AniList for the comprehensive anime database API
  • Supabase for the powerful backend infrastructure
  • Next.js team for the incredible framework
  • Vercel for seamless deployment

๐Ÿ“ง Contact

VoidX3D - @voidx3d

Project Link: https://github.com/voidx3d/anime-tracker


Made with ๐Ÿ›ฐ๏ธ by VoidX3D

โฌ† Back to Top

About

A feature-rich anime tracking platform built with Next.js and Supabase, integrating AniList and MyAnimeList APIs with smart recommendations, dark mode, PWA support, and a sleek glassmorphism design.

Topics

Resources

Stars

Watchers

Forks

Releases

Sponsor this project

Packages

Contributors

Languages