Launch assetTrust, legal, and BU basics

Current terms page

The current terms page confirms that the existing site is still pilot-stage and not yet a production commercial contract surface.

Repo path

website/site/app/terms/page.tsx

Notes

No additional notes recorded.

Raw source preview

Raw, unprocessed file text shown below.

import type { Metadata } from "next";
import InfoPageTemplate from "@/components/pages/InfoPageTemplate";

export const metadata: Metadata = {
  title: "Terms | <un>peel",
  description: "Pilot-site terms information for <un>peel.",
};

export default function TermsPage() {
  return (
    <InfoPageTemplate
      label="Terms"
      title="Terms for use of the pilot site."
      intro="These terms cover use of the public pilot website only. Product subscription terms, pilot agreements, and commercial terms are handled separately during contracting."
      sections={[
        {
          title: "Use of the site",
          body: [
            "The site is provided for information, product exploration, and demo requests. Browsing the site or submitting a contact request does not create a subscription agreement or commercial commitment.",
            "Site content may change as the pilot programme evolves and the public launch materials are completed.",
          ],
        },
        {
          title: "Pilot and product terms",
          body: [
            "Any pilot access, commercial terms, or product commitments are handled separately from this site and are agreed directly as part of the pilot or sales process.",
            "This page should not be treated as the final product contract or service agreement.",
          ],
        },
        {
          title: "Launch-stage update",
          body: [
            "A fuller public terms page will be published before general availability, including the final legal entity details and any production service terms needed for launch.",
          ],
        },
      ]}
    />
  );
}