import Link from "next/link"; import { BookCover } from "@/components/BookCover"; import { FaqAccordion } from "@/components/FaqAccordion"; import { HighlightIcon } from "@/components/HighlightIcon"; import { SiteHeader } from "@/components/SiteHeader"; import { ebookMeta, heroStats, highlights, nomadHubs, pillars, tableOfContents, testimonial, } from "@/content/ebook"; const hubMarquee = [...nomadHubs, ...nomadHubs]; export default function LandingPage() { return (
{/* Hero */}

Free ebook · Digital nomad · English

Work from{" "} anywhere with a plan.

{ebookMeta.title} {" "} is a field guide for remote workers and founders building a location-independent life—bases, visas, gear, community, and rhythm.

by{" "} {ebookMeta.author} · {ebookMeta.readTime} · {ebookMeta.pages} pages

Read free — no signup Browse chapters
{heroStats.map((stat) => (
{stat.value}
{stat.label}
))}
{/* Hub marquee */}
{hubMarquee.map((hub, i) => ( {hub.city} {hub.country} · {hub.vibe} ))}
{/* Highlights */}

What you'll master

Built for the{" "} digital nomad reality

{highlights.map((item) => (

{item.title}

{item.description}

))}
{/* Pillars */}

Four pillars

Location freedom,{" "} without chaos

{pillars.map((pillar, index) => (
0{index + 1}

{pillar.title}

{pillar.body}

))}
{/* Testimonial */}
“{testimonial.quote}”
{testimonial.author} {testimonial.role} {testimonial.location}
{/* Table of contents */}

Table of contents

Six chapters + introduction

Read in-browser on laptop, tablet, or phone—with light/dark mode for late-night flights.

    {tableOfContents.map((item, index) => (
  1. {String(index + 1).padStart(2, "0")} {item.title} {item.summary ? ( {item.summary} ) : null}
  2. ))}
{/* FAQ */}

FAQ

Before you pack

{/* CTA */}

Your next base starts here

Read the nomad playbook tonight

No signup. No paywall. Open on any device, switch themes for red-eye flights, and jump straight to visas or community.

Open {ebookMeta.title}
); }