abdmmar / galnas

Koleksi Galeri Nasional Indonesia

Home Page:https://galnas.abdmmar.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

galnas

Collection and API Documentation of Indonesian National Gallery. Built using Next.js

Getting Started

First, run the development server:

# install dependecies
pnpm i

# run local server
pnpm dev

Open http://localhost:3000 with your browser to see the result.

Features

  • Filter
    • Medium
    • Classifications
  • Search
    • Title
  • Sort
    • Title
    • Year
  • Pagination
    • Previous
    • Next
    • Total Rows
    • Total Page
    • Current Rows

ER Diagram

Here's requirement:

  • Each collection can be associated with multiple artists and mediums.
  • Each artist can create multiple collections.
  • Each medium can be used by multiple collections.
erDiagram
    Collection {
      String id PK
      String title
      String image
      String description
      String link
      Int year
      String classification_id FK
    }

    Classification {
      String id PK
      String name
    }

    Medium {
      String id PK
      String name
    }

    Artist {
      String id PK
      String name
      String link
    }

    Collection }|--|{ Artist : haves
    Collection }|--|{ Medium : uses
    Collection }|--|| Classification : is

About

Koleksi Galeri Nasional Indonesia

https://galnas.abdmmar.com


Languages

Language:TypeScript 98.0%Language:CSS 1.7%Language:JavaScript 0.3%