My Tea Cupboard

A platform for tea enthusiasts to track their tea collections and share their favorite teas with others.

Type

Web App

Tech Stack

HTML

CS

Vanilla JavaScript

Github Pages

My Tea Cupboard

Project Purpose & Goal

My Tea CupboardMy Tea CupboardMy Tea Cupboard

Stack & Explanation

My Tea Cupboard is intentionally minimal and highlights a fundamental approach
to web development, focusing on core web technologies before introducing more
complex tools like frameworks or databases.

HTML Provides the fundamental structure and content of the webpage. CSS Manages the
styling and visual presentation, including layout, colors, and fonts.

Vanilla JavaScript Handles all the interactive elements and application logic without the
use of external libraries or frameworks.
This includes features like adding, editing, and deleting tea entries.

Local Storage is a browser feature that allows websites to
store key-value pairs locally on a user's machine.
It's used here to save the list of teas so they persist even after the user closes the browser.

I chose GitHub Pages A free hosting service from GitHub that serves static websites directly
from a repository. It's perfect for projects like this that don't require server-side processing.

My Tea CupboardMy Tea Cupboard

Problems & Thought Process

My Tea Cupboard

Lessons Learned