1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72import Link from "next/link";
export default function Home() {
return (
<div className="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div className="text-center">
<h1 className="text-4xl font-bold tracking-tight text-gray-900 sm:text-6xl">
Never Forget Important Web Content
</h1>
<p className="mt-6 text-lg leading-8 text-gray-600">
Remind Me is your intelligent companion for setting contextual reminders while browsing.
Save anything interesting you find online and get reminded when it matters.
</p>
<div className="mt-10 flex items-center justify-center gap-x-6">
<Link
href="https://remindme-landing-8is6937u2-lucas-projects-7cbc24c5.vercel.app/"
className="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
>
Add to Chrome
</Link>
</div>
</div>
<div className="mt-24">
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl text-center">
Key Features
</h2>
<div className="mt-12 grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
{[
{
title: "One-Click Reminders",
description: "Right-click any text or element on a webpage to set a reminder instantly.",
icon: "๐ฏ",
},
{
title: "Smart Context",
description: "We save not just the reminder, but the full context including the webpage URL.",
icon: "๐ง ",
},
{
title: "Flexible Scheduling",
description: "Choose when you want to be reminded - later today, tomorrow, next week, or custom date.",
icon: "๐
",
},
{
title: "Beautiful Interface",
description: "Modern, clean design with intuitive controls and smooth animations.",
icon: "โจ",
},
{
title: "Email Notifications",
description: "Optional email reminders ensure you never miss important information.",
icon: "๐ง",
},
{
title: "Privacy First",
description: "Your data stays in your browser. We respect your privacy.",
icon: "๐",
},
].map((feature) => (
<div key={feature.title} className="relative bg-white p-8 rounded-2xl shadow-sm hover:shadow-md transition-shadow">
<div className="text-4xl mb-4">{feature.icon}</div>
<h3 className="text-lg font-semibold text-gray-900">{feature.title}</h3>
<p className="mt-2 text-gray-600">{feature.description}</p>
</div>
))}
</div>
</div>
</div>
);
}