Standalone landing site for Rentle, the property & rent management app
(owners + tenants). Intended for the subdomain rentle.imautotech.in.
Mirrors the wxgamepad-web / watchparty-web setup: static, Tailwind, Netlify,
marketing-only.
- Plain static HTML + Tailwind CDN — no build step.
- Screenshots are bundled locally in
images/screenshots/(the App Store images), rendered with a lightbox — no external dependency. - The iOS beta form posts to Rentle's own Supabase project (
cvhxmrwrilcxbumzkpen).
index.html Landing (hero, owner+tenant features, how-it-works, beta form, screenshots, download)
privacy-policy.html Privacy Policy → use as the store privacy URL
terms-of-service.html Terms (incl. UPI-payment disclaimer + auto-renewable subscription terms)
contact.html Contact page
images/rentle-logo.png App icon (logo / favicon / OG)
images/screenshots/ 10 App Store screenshots
netlify.toml Static publish config
cd rentle-web
python3 -m http.server 8080 # http://localhost:8080- New Netlify site from this repo, publish dir
.. - Add custom domain
rentle.imautotech.in; at DNS add a CNAMErentle→<site>.netlify.app. - Set the store Privacy URL to
https://rentle.imautotech.in/privacy-policy.html.
- Play Store — confirm
com.rentle.applisting is live (used in hero + download). - App Store — the iOS chip points at the beta form; swap to the App Store URL once live.
- iOS beta table — the form needs a
testflight_signupstable in Rentle's Supabase project. Run this once in Supabase → Rentle → SQL Editor:create table if not exists public.testflight_signups ( id uuid primary key default gen_random_uuid(), apple_id text not null unique, platform text not null default 'ios', source text default 'website', created_at timestamptz not null default now() ); alter table public.testflight_signups enable row level security; create policy "anon can insert signups" on public.testflight_signups for insert to anon, authenticated with check (true);
- imautotech card — point the Rentle product card's
custom_page_pathat the subdomain once it's live (same as wx-gamepad).