42 Commits

Author SHA1 Message Date
e5fd3ec8e8 Switch to version 11: remove .env.local.example 2026-03-06 08:25:00 +00:00
3eb21771d1 Switch to version 11: modified src/app/page.tsx 2026-03-06 08:25:00 +00:00
2f113b3b0f Switch to version 11: modified src/app/api/waitlist/route.ts 2026-03-06 08:25:00 +00:00
f4eeb48f17 Switch to version 11: modified package.json 2026-03-06 08:24:59 +00:00
26507f4126 Merge version_12 into main
Merge version_12 into main
2026-03-06 08:11:44 +00:00
0924e85ee7 Update src/app/api/waitlist/route.ts 2026-03-06 08:11:40 +00:00
416688826f Merge version_12 into main
Merge version_12 into main
2026-03-06 08:00:16 +00:00
e80dcca1a8 Update src/app/page.tsx 2026-03-06 08:00:12 +00:00
6b7ca8c352 Merge version_12 into main
Merge version_12 into main
2026-03-06 07:59:13 +00:00
416ab0fb9c Update src/app/page.tsx 2026-03-06 07:59:09 +00:00
fc3c5dbe19 Update src/app/api/waitlist/route.ts 2026-03-06 07:59:09 +00:00
a3258ea000 Update package.json 2026-03-06 07:59:09 +00:00
80eda59319 Add .env.local.example 2026-03-06 07:59:08 +00:00
63f1f58dc9 Merge version_11 into main
Merge version_11 into main
2026-03-06 06:25:29 +00:00
8f96928c52 Update src/app/page.tsx 2026-03-06 06:25:25 +00:00
92065771c3 Update src/app/api/waitlist/route.ts 2026-03-06 06:25:25 +00:00
1792646e60 Merge version_10 into main
Merge version_10 into main
2026-03-06 06:18:37 +00:00
7d9e3379cc Update src/app/page.tsx 2026-03-06 06:18:33 +00:00
a255161583 Update src/app/layout.tsx 2026-03-06 06:18:32 +00:00
ad8bbfecf6 Add src/app/api/waitlist/route.ts 2026-03-06 06:18:32 +00:00
73710d854b Merge version_9 into main
Merge version_9 into main
2026-03-06 06:13:48 +00:00
68469d88dd Update src/app/page.tsx 2026-03-06 06:13:38 +00:00
63c8304a3b Update src/app/layout.tsx 2026-03-06 06:13:37 +00:00
b956958798 Merge version_8 into main
Merge version_8 into main
2026-03-06 06:07:31 +00:00
e91715a197 Update src/app/page.tsx 2026-03-06 06:07:27 +00:00
c75dd59c0a Merge version_7 into main
Merge version_7 into main
2026-03-06 06:05:59 +00:00
961894778f Update src/app/page.tsx 2026-03-06 06:05:55 +00:00
cdc373f255 Merge version_6 into main
Merge version_6 into main
2026-03-06 04:57:35 +00:00
3e6bf968af Update src/app/page.tsx 2026-03-06 04:57:31 +00:00
bb70a5d116 Merge version_5 into main
Merge version_5 into main
2026-03-06 04:53:20 +00:00
e3da975fa0 Update src/app/page.tsx 2026-03-06 04:53:16 +00:00
efeb65da9f Update src/app/layout.tsx 2026-03-06 04:53:16 +00:00
c54ee001f6 Merge version_4 into main
Merge version_4 into main
2026-03-06 04:51:59 +00:00
feadd88571 Update src/app/page.tsx 2026-03-06 04:51:55 +00:00
19a3f5afd7 Update src/app/layout.tsx 2026-03-06 04:51:54 +00:00
b1308f0f94 Merge version_3 into main
Merge version_3 into main
2026-03-06 04:37:31 +00:00
4f9adb38fc Update src/app/page.tsx 2026-03-06 04:37:27 +00:00
fd33ba8c47 Update src/app/layout.tsx 2026-03-06 04:37:27 +00:00
b408dc5624 Merge version_2 into main
Merge version_2 into main
2026-03-06 04:34:53 +00:00
c1cbc9d2d8 Update src/app/page.tsx 2026-03-06 04:34:49 +00:00
39250e937b Update src/app/layout.tsx 2026-03-06 04:34:49 +00:00
44c6e6c239 Merge version_1 into main
Merge version_1 into main
2026-03-06 04:33:05 +00:00
3 changed files with 263 additions and 63 deletions

View File

@@ -0,0 +1,86 @@
import { NextRequest, NextResponse } from 'next/server';
interface WaitlistEntry {
email: string;
instagram?: string;
tiktok?: string;
createdAt: string;
}
// In-memory storage for demonstration
// In production, replace with actual database (MongoDB, PostgreSQL, etc.)
const waitlistEntries: WaitlistEntry[] = [];
export async function POST(request: NextRequest) {
try {
const body = await request.json();
const { email, instagram, tiktok } = body;
// Validate email
if (!email || typeof email !== 'string' || !email.includes('@')) {
return NextResponse.json(
{ error: 'Valid email is required' },
{ status: 400 }
);
}
// Check for duplicate email
if (waitlistEntries.some(entry => entry.email === email)) {
return NextResponse.json(
{ error: 'Email already registered' },
{ status: 409 }
);
}
// Create waitlist entry
const entry: WaitlistEntry = {
email,
instagram: instagram || undefined,
tiktok: tiktok || undefined,
createdAt: new Date().toISOString()
};
// Add to in-memory storage
waitlistEntries.push(entry);
// TODO: In production, save to database here
// Example for MongoDB:
// await db.collection('waitlist').insertOne(entry);
// TODO: Send confirmation email
// Example:
// await sendEmail({
// to: email,
// subject: 'Welcome to Clearance Waitlist',
// template: 'waitlist-confirmation'
// });
console.log('Waitlist entry created:', entry);
return NextResponse.json(
{
success: true,
message: 'Successfully joined the waitlist',
data: entry
},
{ status: 201 }
);
} catch (error) {
console.error('Waitlist API error:', error);
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
);
}
}
export async function GET() {
// Optional: Get all waitlist entries (add authentication in production)
return NextResponse.json(
{
count: waitlistEntries.length,
entries: waitlistEntries
},
{ status: 200 }
);
}

View File

@@ -1,49 +1,24 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Clearance Protect Your Content License Revenue", description: "Stop losing money when your content licenses expire. Clearance automates IP protection for creators and agencies with smart license tracking and renewal invoicing.", keywords: "content license protection, IP management, creator revenue, license tracker, renewal automation", openGraph: {
title: "Clearance Protect Your Content License Revenue", description: "Stop losing money when your content licenses expire. Clearance automates IP protection for creators and agencies.", siteName: "Clearance", type: "website"},
twitter: {
card: "summary_large_image", title: "Clearance Protect Your Content License Revenue", description: "Automate IP protection and renewal invoicing for creators and agencies."},
robots: {
index: true,
follow: true,
},
title: "Clearance - Protect Your IP Revenue", description: "Automate IP protection for creators and agencies. Track licenses, get renewal reminders, and collect payments before your content goes dark."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<head>
<script async src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -8,9 +8,10 @@ import FeatureBento from '@/components/sections/feature/FeatureBento';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import FaqBase from '@/components/sections/faq/FaqBase';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Shield, Zap, Clock, AlertCircle, CheckCircle, Users, Sparkles, HelpCircle } from "lucide-react";
import { useState, useRef } from "react";
import Input from '@/components/form/Input';
const navItems = [
{ name: "Problem", id: "problem" },
@@ -25,7 +26,55 @@ const socialProofLogos = [
"http://img.b2bpic.net/free-vector/flat-minimal-technology-labels_23-2149083696.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-hub-logo-design_23-2149857667.jpg", "http://img.b2bpic.net/free-vector/gradient-accounting-logo_23-2148844138.jpg", "http://img.b2bpic.net/free-vector/design-artwork-logo-template_23-2149507369.jpg", "http://img.b2bpic.net/free-vector/gradient-colored-data-logo-template_23-2149189483.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-hub-logo-design_23-2149857670.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-business-workshop-labels_23-2149422820.jpg"
];
interface WaitlistFormData {
email: string;
instagram?: string;
tiktok?: string;
}
export default function LandingPage() {
const [waitlistData, setWaitlistData] = useState<WaitlistFormData[]>([]);
const [formStatus, setFormStatus] = useState<'idle' | 'success' | 'error'>('idle');
const contactFormRef = useRef<HTMLDivElement>(null);
const handleWaitlistSubmit = async (formData: WaitlistFormData) => {
try {
const response = await fetch('/api/waitlist', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(formData),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to submit form');
}
const responseData = await response.json();
setWaitlistData([...waitlistData, formData]);
setFormStatus('success');
setTimeout(() => setFormStatus('idle'), 3000);
console.log('Waitlist submission successful:', responseData);
} catch (error) {
setFormStatus('error');
console.error('Error submitting waitlist form:', error);
}
};
const handleJoinWaitlistClick = () => {
if (contactFormRef.current) {
contactFormRef.current.scrollIntoView({ behavior: 'smooth' });
setTimeout(() => {
const emailInput = contactFormRef.current?.querySelector('input[type="email"]') as HTMLInputElement;
if (emailInput) {
emailInput.focus();
}
}, 300);
}
};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -44,7 +93,7 @@ export default function LandingPage() {
brandName="Clearance"
navItems={navItems}
button={{
text: "Join Waitlist", href: "#contact"
text: "Join Waitlist", onClick: handleJoinWaitlistClick
}}
/>
</div>
@@ -52,7 +101,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitKpi
title="Stop Losing Money When Your Content License Expires"
description="Clearance automates IP protection for creators and agencies. Track licenses, get renewal reminders, and collect payments before your content goes dark."
description="Recover $1,000$5,000+ per renewal on autopilot. Clearance automates IP protection for creators and agencies. Track licenses, get renewal reminders, and collect payments before your content goes dark."
tag="Join 200+ creators protecting their IP"
tagIcon={Shield}
tagAnimation="blur-reveal"
@@ -63,7 +112,7 @@ export default function LandingPage() {
{ value: "5min", label: "Setup Time" }
]}
enableKpiAnimation={true}
buttons={[{ text: "Join Waitlist", href: "#contact" }]}
buttons={[{ text: "Join Waitlist", onClick: handleJoinWaitlistClick }]}
imageSrc={heroImage}
imageAlt="Clearance fintech dashboard interface"
mediaAnimation="slide-up"
@@ -82,13 +131,13 @@ export default function LandingPage() {
animationType="slide-up"
metrics={[
{
id: "1", value: "Brands", title: "Run Your Content Past Expiry", items: ["No expiration tracking", "Licenses silently expire", "Brands keep profiting—you don't"]
id: "1", value: "Brands Use Expired Licenses", title: "Content Keeps Running Past Expiry", items: ["No expiration tracking", "Licenses silently expire", "Brands keep profiting—you don't"]
},
{
id: "2", value: "You Never", title: "Invoice the Renewal", items: ["Manual renewal follow-ups", "Easy to forget", "Lost revenue disappears"]
id: "2", value: "You Miss Renewal Invoices", title: "Nobody Remembers to Bill", items: ["Manual renewal follow-ups", "Easy to forget", "Lost revenue disappears"]
},
{
id: "3", value: "That's Money", title: "You'll Never See", items: ["Average loss: $1,200/creator", "Expires quarterly", "Compounds over time"]
id: "3", value: "Revenue Slips Away Silently", title: "Money Lost to Expired Deals", items: ["Average loss: $1,200/creator", "Expires quarterly", "Compounds over time"]
}
]}
/>
@@ -111,7 +160,8 @@ export default function LandingPage() {
{ label: "Import licenses", detail: "Sync with Dropbox or manual upload" },
{ label: "Set details", detail: "Price, duration, and brand info" },
{ label: "Activate", detail: "Start tracking immediately" }
], completedLabel: "Setup Complete"
],
completedLabel: "Setup Complete"
},
{
title: "License Timer Runs", description: "Real-time countdown to expiration with notifications", bentoComponent: "animated-bar-chart"
@@ -141,19 +191,19 @@ export default function LandingPage() {
carouselMode="buttons"
products={[
{
id: "1", name: "Licensing Tracker", price: "Core Feature", variant: "Dashboard view of all active licenses", imageSrc: heroImage,
id: "1", name: "Licensing Tracker", price: "Core Feature", variant: "Never miss a renewal deadline again", imageSrc: heroImage,
imageAlt: "Licensing tracker dashboard"
},
{
id: "2", name: "Automated Renewal Invoicing", price: "Core Feature", variant: "Smart billing 30 days before expiry", imageSrc: heroImage,
id: "2", name: "Automated Renewal Invoicing", price: "Core Feature", variant: "Get paid automatically before licenses expire", imageSrc: heroImage,
imageAlt: "Automated invoicing interface"
},
{
id: "3", name: "Payment Protection", price: "Core Feature", variant: "Secure payment collection and tracking", imageSrc: heroImage,
id: "3", name: "Payment Protection", price: "Core Feature", variant: "Ensure every license renewal turns into revenue", imageSrc: heroImage,
imageAlt: "Payment security interface"
},
{
id: "4", name: "Creator Dashboard", price: "Core Feature", variant: "Full analytics and revenue insights", imageSrc: heroImage,
id: "4", name: "Creator Dashboard", price: "Core Feature", variant: "Track all your IP revenue in one place", imageSrc: heroImage,
imageAlt: "Creator dashboard analytics"
}
]}
@@ -210,22 +260,8 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Waitlist"
title="Get Early Access"
description="Join the waitlist and be among the first to protect your IP revenue. Early adopters get lifetime discounts and 1-on-1 onboarding."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc={heroImage}
imageAlt="Clearance waitlist early access"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Join Waitlist"
termsText="We respect your privacy. Unsubscribe anytime. No spam, ever."
tagAnimation="blur-reveal"
/>
<div id="contact" data-section="contact" ref={contactFormRef}>
<WaitlistFormSection onSubmit={handleWaitlistSubmit} formStatus={formStatus} />
</div>
<div id="footer" data-section="footer">
@@ -260,3 +296,107 @@ export default function LandingPage() {
</ThemeProvider>
);
}
function WaitlistFormSection({ onSubmit, formStatus }: { onSubmit: (data: WaitlistFormData) => void; formStatus: 'idle' | 'success' | 'error' }) {
const [email, setEmail] = useState('');
const [instagram, setInstagram] = useState('');
const [tiktok, setTiktok] = useState('');
const [isSubmitting, setIsSubmitting] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setIsSubmitting(true);
if (!email) {
setIsSubmitting(false);
return;
}
onSubmit({
email,
instagram: instagram || undefined,
tiktok: tiktok || undefined
});
setEmail('');
setInstagram('');
setTiktok('');
setIsSubmitting(false);
};
return (
<div className="w-full">
<div className="max-w-4xl mx-auto px-4 py-12">
<div className="bg-card rounded-lg p-8 shadow-sm">
<div className="mb-8">
<h2 className="text-3xl font-bold mb-2 break-words overflow-hidden text-ellipsis">Get Early Access</h2>
<p className="text-foreground/70 break-words overflow-hidden text-ellipsis">Join the waitlist and be among the first to protect your IP revenue. Early adopters get lifetime discounts and 1-on-1 onboarding.</p>
</div>
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label htmlFor="email" className="block text-sm font-medium mb-2 break-words overflow-hidden text-ellipsis">
Email Address <span className="text-primary-cta">*</span>
</label>
<Input
value={email}
onChange={setEmail}
type="email"
placeholder="your@email.com"
required
/>
</div>
<div>
<label htmlFor="instagram" className="block text-sm font-medium mb-2 break-words overflow-hidden text-ellipsis">
Instagram Handle <span className="text-foreground/50">(optional)</span>
</label>
<Input
value={instagram}
onChange={setInstagram}
type="text"
placeholder="@yourhandle"
/>
</div>
<div>
<label htmlFor="tiktok" className="block text-sm font-medium mb-2 break-words overflow-hidden text-ellipsis">
TikTok Handle <span className="text-foreground/50">(optional)</span>
</label>
<Input
value={tiktok}
onChange={setTiktok}
type="text"
placeholder="@yourhandle"
/>
</div>
<button
type="submit"
disabled={isSubmitting || !email}
className="w-full px-6 py-3 rounded-lg bg-primary-cta text-primary-cta-text font-medium hover:opacity-90 disabled:opacity-50 disabled:cursor-not-allowed transition-opacity"
>
{isSubmitting ? 'Joining...' : 'Join Waitlist'}
</button>
</form>
{formStatus === 'success' && (
<div className="mt-4 p-4 bg-green-100/20 border border-green-500/30 rounded-lg text-green-700 text-sm break-words overflow-hidden text-ellipsis">
Successfully joined the waitlist! Check your email for confirmation.
</div>
)}
{formStatus === 'error' && (
<div className="mt-4 p-4 bg-red-100/20 border border-red-500/30 rounded-lg text-red-700 text-sm break-words overflow-hidden text-ellipsis">
× Something went wrong. Please try again.
</div>
)}
<p className="mt-6 text-xs text-foreground/50 text-center break-words overflow-hidden text-ellipsis">
We respect your privacy. Unsubscribe anytime. No spam, ever.
</p>
</div>
</div>
</div>
);
}