Forlods logoForlods
Log in

Terms & Conditions

Last updated: January 2026

Welcome to Forlods. These Terms & Conditions (“Terms”) govern your access to and use of the Forlods platform, including all related applications, websites, and services.


1. Rendering & Routing Model

Forlods is built using the Next.js App Router architecture.

  • Server Components by default
  • Client Components only when necessary
  • Route groups used for:
    • Public routes
    • Authenticated routes
    • Marketing routes (future)

Example inline formatting

You can combine bold, italic, bold + italic, strikethrough, and inline code within the same paragraph.

Links are supported:


2. Authentication & Access Control

2.1 Authenticated routes

Authenticated routes require a valid session.

  • Users without a valid session will be redirected to /login
  • Client-side guards must not be relied upon alone

Important: Authentication is enforced on the server to ensure security and consistency across devices.

2.2 Public routes

The following routes are publicly accessible:

  1. Signup
  2. Login
  3. Email confirmation
  4. Booking widget

3. Data Handling & Privacy

We take privacy seriously.

What we collect

  • Account information (email, encrypted credentials)
  • Usage data (events, timestamps)
  • Configuration and preferences

What we do not do

  • Sell personal data
  • Track users without consent
  • Store plaintext passwords

“Privacy is not an option — it is a responsibility.”


4. Markdown & Code Examples

Inline code looks like this: npm run build

A fenced code block:

export function requireSession(session: Session | null) {
  if (!session) {
    redirect('/login')
  }
}