Skip to content

Modern React, Tailwind UI for showcasing personalized anime/movie recommendations

Notifications You must be signed in to change notification settings

Dev-Aligator/apriome

Repository files navigation

Anime Recommendation Frontend

This repository utilizes React, TypeScript (with Vite), Tailwind CSS, and SASS to create an interactive user interface for accessing anime recommendations generated by the backend API.

Features

  • User Interface: Intuitive and user-friendly interface for browsing anime recommendations.
  • Authentication: Secure authentication system to manage user sessions.
  • Dynamic Rendering: Dynamically fetches and updates anime data from the backend API.
  • Responsive Design: Ensures optimal viewing experience across various devices and screen sizes.

Setup

  1. Clone the repository
    git clone https://github.com/Dev-Aligator/apriome.git
  1. Install dependencies
    npm install --legacy-peer-deps
  1. Run the development server
    npm run dev

Configuration

To configure the base URL for the API, navigate to the src/constants/environment.ts file. Replace the default baseUrl value with your desired backend API URL.

    baseUrl: "http://127.0.0.1:8000",

Dev-Aligator