From 8c37e5bb4567095916a2f72b2e3afbd949d60759 Mon Sep 17 00:00:00 2001 From: kevin-asprec Date: Mon, 16 Mar 2026 15:35:25 +0800 Subject: [PATCH] Initial project setup with README and .gitignore --- .gitignore | 8 ++++++++ README.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..477fa0f --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +node_modules/ +dist/ +.env +.env.local +.env.production +*.log +.DS_Store +.vscode/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..61ed8f0 --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +# TapTrack — Marketing Website + +Official marketing and product website for **TapTrack**, a smart NFC-based student attendance management system built for Philippine schools. + +## About TapTrack + +TapTrack automates student attendance tracking with: +- NFC tap-in for instant, paperless attendance +- Real-time SMS alerts to parents +- Cloud-based dashboards for administrators and principals +- Automated monthly billing and reports + +## Project Structure + +``` +TapTrack Website/ +├── src/ +│ ├── components/ # Reusable UI components +│ ├── pages/ # Page components +│ ├── assets/ # Images, icons, fonts +│ └── styles/ # Global styles & Tailwind config +├── public/ # Static assets +└── index.html +``` + +## Tech Stack (Planned) + +- **Framework**: Vue 3 + TypeScript +- **Styling**: Tailwind CSS v4 +- **Build**: Vite +- **Deployment**: Vercel / Netlify + +## Design + +Mock design created in Pencil. Pending approval before development begins. + +### Pages +- `/` — Landing page (hero, features, pricing, testimonials) +- `/features` — Full features breakdown +- `/pricing` — Detailed pricing & comparison +- `/about` — Company story +- `/contact` — Contact & demo request form +- `/blog` — News & updates + +## Getting Started + +```bash +npm install +npm run dev +``` + +## Status + +> Design phase — awaiting approval before development begins.