Skip to content

Commit 8405306

Browse files
committed
docs(web): extension is published — update get-extension + roadmap
get-extension: replace beta/load-unpacked/pending-review with the Chrome Web Store install + no-code auto-connect; link to the mobile guide. Roadmap: add a 'Live' status; mark Browser extension, Add-from-your-phone, and photo uploads as Live (shipped).
1 parent e105c18 commit 8405306

2 files changed

Lines changed: 30 additions & 23 deletions

File tree

web/app/(public)/get-extension/page.tsx

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ import type { Metadata } from "next";
22
import Link from "next/link";
33
import { MarketingNav } from "@/components/marketing-nav";
44
import { Footer } from "@/components/footer";
5-
import { Download, Puzzle, Monitor, Smartphone } from "lucide-react";
5+
import { Puzzle, Monitor, Smartphone } from "lucide-react";
6+
7+
const STORE_URL = "https://chromewebstore.google.com/detail/shoplit-%E2%80%94-add-to-cart/dplbbiamddaaimhjennfncbpbnkfconn";
68

79
export const metadata: Metadata = {
8-
title: "Get the shoplit extension (beta) · shoplit",
9-
description: "Add products to your shoplit cart in one click from Amazon, Myntra, Nykaa, Flipkart & AJIO.",
10+
title: "Get the shoplit extension · shoplit",
11+
description: "Add products to your shoplit cart in one click from Amazon, Myntra, Nykaa, Flipkart & AJIO — free on the Chrome Web Store.",
1012
};
1113

1214
const desktopSteps = [
13-
{ t: "Download & unzip", b: "Download the file below and unzip it — you'll get a folder called shoplit-extension." },
14-
{ t: "Open Chrome extensions", b: "Go to chrome://extensions and turn on Developer mode (top-right toggle)." },
15-
{ t: "Load it", b: "Click “Load unpacked” and select the unzipped shoplit-extension folder. Pin the shoplit icon." },
16-
{ t: "Connect your account", b: "Open the connect page, copy the code shown there, and paste it into the extension's popup → Connect." },
15+
{ t: "Add it from the Chrome Web Store", b: "Tap the button above and choose “Add to Chrome”. Works in Chrome, Edge and Brave. Pin the shoplit icon so it's one click away." },
16+
{ t: "Connect your account", b: "Open the connect page while signed in to shoplit — the extension links automatically, no code to copy or paste." },
1717
{ t: "Start adding", b: "Open any product on Amazon, Myntra, Nykaa, Flipkart or AJIO and hit “+ Add to shoplit”." },
1818
];
1919

@@ -36,11 +36,11 @@ export default function GetExtensionPage() {
3636
>
3737
<Puzzle size={26} />
3838
</span>
39-
<p className="text-sm text-accent uppercase tracking-widest font-medium mb-2">Browser extension · Beta</p>
39+
<p className="text-sm text-accent uppercase tracking-widest font-medium mb-2">Browser extension</p>
4040
<h1 className="font-serif text-4xl sm:text-5xl leading-[1.05] mb-3">Add to shoplit in one click</h1>
4141
<p className="text-muted text-lg leading-relaxed">
42-
Grab products straight from the product page — no copy-pasting links. It&apos;s pending
43-
Chrome Web Store review; until then, set it up manually (a minute on desktop).
42+
Grab products straight from the product page — no copy-pasting links. Now live and free
43+
on the Chrome Web Store.
4444
</p>
4545
</div>
4646

@@ -51,11 +51,12 @@ export default function GetExtensionPage() {
5151
<h2 className="font-serif text-2xl">On desktop (Chrome, Edge, Brave)</h2>
5252
</div>
5353
<a
54-
href="/shoplit-extension.zip"
55-
download
54+
href={STORE_URL}
55+
target="_blank"
56+
rel="noopener noreferrer"
5657
className="inline-flex items-center gap-2 rounded-full bg-ink text-cream px-6 py-3 font-medium hover:opacity-90 transition-opacity"
5758
>
58-
<Download size={18} /> Download for Chrome
59+
<Puzzle size={18} /> Add to Chrome — free
5960
</a>
6061
<ol className="mt-7 space-y-5">
6162
{desktopSteps.map((s, i) => (
@@ -105,13 +106,16 @@ export default function GetExtensionPage() {
105106
Add a product by link →
106107
</Link>
107108
<p className="text-xs text-muted mt-6 leading-relaxed">
108-
Power users on Android: <strong className="text-ink">Kiwi Browser</strong> does support Chrome
109-
extensions — you can load the same downloaded folder there via its Extensions menu.
109+
Power users on Android: <strong className="text-ink">Kiwi Browser</strong> supports Chrome
110+
extensions — you can install shoplit from the Chrome Web Store there too.
110111
</p>
111112
</section>
112113

113-
<p className="text-center text-xs text-muted mt-6">
114-
Once it&apos;s approved on the Chrome Web Store, desktop install becomes a single click — we&apos;ll update this page.
114+
<p className="text-center text-sm text-muted mt-6">
115+
On a phone?{" "}
116+
<Link href="/mobile" className="text-accent underline underline-offset-4 hover:opacity-80">
117+
See the full mobile guide →
118+
</Link>
115119
</p>
116120
</main>
117121
<Footer />

web/app/(public)/roadmap/page.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ import { Footer } from "@/components/footer";
55
import { RevealOnScroll } from "@/components/reveal-on-scroll";
66
import {
77
Lock, ImageUp, UsersRound, Search, Rss, Heart, Star,
8-
Wallet, BellRing, FolderHeart, Puzzle, ArrowRight,
8+
Wallet, BellRing, FolderHeart, Puzzle, Smartphone, ArrowRight,
99
} from "lucide-react";
1010

1111
export const metadata: Metadata = {
1212
title: "Roadmap · shoplit",
1313
description: "What's shipping next on shoplit — and tell us what to build.",
1414
};
1515

16-
type Status = "Beta" | "Soon" | "Planned" | "Exploring";
16+
type Status = "Live" | "Beta" | "Soon" | "Planned" | "Exploring";
1717

1818
const STATUS_STYLE: Record<Status, string> = {
19+
Live: "bg-ink text-cream",
1920
Beta: "bg-accent text-cream",
2021
Soon: "bg-accent/15 text-accent",
2122
Planned: "bg-ink/10 text-ink",
@@ -30,12 +31,14 @@ interface Item {
3031
}
3132

3233
const ITEMS: Item[] = [
33-
{ icon: <Puzzle size={20} />, title: "Browser extension", status: "Beta",
34-
body: "Add products to your cart in one click from Amazon, Myntra, Nykaa, Flipkart & AJIO — straight from the product page." },
34+
{ icon: <Puzzle size={20} />, title: "Browser extension", status: "Live",
35+
body: "Add products to your cart in one click from Amazon, Myntra, Nykaa, Flipkart & AJIO — straight from the product page. Free on the Chrome Web Store." },
36+
{ icon: <Smartphone size={20} />, title: "Add from your phone", status: "Live",
37+
body: "No desktop needed — share a product from any shopping app into shoplit, or paste the link. Install shoplit to your home screen and add on the go." },
38+
{ icon: <ImageUp size={20} />, title: "Upload your own photos", status: "Live",
39+
body: "Add product and cover images straight from your phone or computer — tap “📷 Add a photo”, no image URL needed." },
3540
{ icon: <Lock size={20} />, title: "Public & private carts", status: "Soon",
3641
body: "Decide who can see each cart — keep some public, others just for you until you're ready to share." },
37-
{ icon: <ImageUp size={20} />, title: "Upload your own cover", status: "Soon",
38-
body: "Drag-and-drop your own cover images, not just paste a URL — make every cart unmistakably yours." },
3942
{ icon: <UsersRound size={20} />, title: "Share with select people", status: "Soon",
4043
body: "Private links you can share with a chosen few — perfect for client edits or close-friends drops." },
4144
{ icon: <Wallet size={20} />, title: "Earnings dashboard", status: "Planned",

0 commit comments

Comments
 (0)