Update src/app/page.tsx

This commit is contained in:
2026-05-04 21:24:51 +00:00
parent 04bd17af0b
commit b954b45361

View File

@@ -39,7 +39,7 @@ export default function LandingPage() {
{ name: "Blog", id: "blog" },
]}
brandName="TempMail Pro"
button={{ text: "Get Pro", href: "#contact" }}
button={{ text: "Get Pro", href: "/contact" }}
/>
</div>
@@ -48,8 +48,8 @@ export default function LandingPage() {
logoText="TempMail Pro"
description="Instant, secure, and ephemeral email addresses for the modern developer. Experience zero-lag polling and enterprise-grade privacy."
buttons={[
{ text: "Get Started", href: "#" },
{ text: "Documentation", href: "#" },
{ text: "Get Started", href: "/contact" },
{ text: "Documentation", href: "/blog" },
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/broker-looking-laptop-analyzing-stock-market-invest-trading-stocks-graph_169016-48828.jpg", imageAlt: "Dashboard preview" },
@@ -89,6 +89,7 @@ export default function LandingPage() {
]}
title="Upgrade Your Inbox"
description="Simple, transparent pricing for heavy users and developers."
buttons={[{ text: "View Plans", href: "/pricing" }]}
/>
</div>
@@ -120,6 +121,7 @@ export default function LandingPage() {
cardTitle="What Users Say"
cardTag="Testimonials"
cardAnimation="slide-up"
buttons={[{ text: "Read More", href: "/testimonials" }]}
/>
</div>
@@ -133,6 +135,7 @@ export default function LandingPage() {
]}
sideTitle="Common Questions"
faqsAnimation="blur-reveal"
buttons={[{ text: "Help Center", href: "/faq" }]}
/>
</div>
@@ -143,6 +146,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Privacy Insights"
description="Stay updated on the latest digital security trends and tools."
buttons={[{ text: "Visit Blog", href: "/blog" }]}
blogs={[
{ id: "b1", category: "Privacy", title: "Digital Privacy in 2026", excerpt: "How to stay ahead of trackers.", imageSrc: "http://img.b2bpic.net/free-photo/cybersecurity-concept-with-digital-lock_23-2152004061.jpg", authorName: "Jane D.", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-male-personal-shopper-working_23-2148924153.jpg", date: "Jan 2026" },
{ id: "b2", category: "Tech", title: "Why Devs Need Disposable Emails", excerpt: "Testing and beyond.", imageSrc: "http://img.b2bpic.net/free-photo/it-specialist-home-office-enjoying-hot-beverage-while-programming_482257-93035.jpg", authorName: "Jane D.", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-working-late-night_23-2150170834.jpg", date: "Jan 2026" },
@@ -166,20 +170,20 @@ export default function LandingPage() {
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Features", href: "/features" },
{ label: "Pricing", href: "/pricing" },
],
},
{
title: "Support", items: [
{ label: "API Docs", href: "#" },
{ label: "Contact", href: "#" },
{ label: "API Docs", href: "/docs" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal", items: [
{ label: "Terms", href: "#" },
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "/terms" },
{ label: "Privacy", href: "/privacy" },
],
},
]}
@@ -190,4 +194,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}