<?php
$currentPage = 'about';
$pageTitle = 'About Us | Vivora Tools';
$pageDescription = 'Learn more about Vivora Tools, our free browser-based text utilities, and the services we provide for quick everyday text tasks.';
$canonicalPath = 'about-us';
$bodyClass = 'about-page';
$breadcrumbs = [
    ['name' => 'Home', 'url' => ''],
    ['name' => 'About Us', 'url' => 'about-us'],
];
require __DIR__ . '/includes/head.php';
require __DIR__ . '/includes/header.php';
?>

<section class="page-hero py-16">
  <div class="container">
    <div class="text-center">
      <ul class="breadcrumb inline-flex h-8 items-center justify-center space-x-2 rounded-3xl bg-theme-light px-4 py-2">
        <li class="leading-none text-dark">
          <a class="inline-flex items-center text-primary" href="/">
            <i class="fa-solid fa-house breadcrumb-home-icon" aria-hidden="true"></i>
            <span class="text-sm leading-none">Home</span>
          </a>
        </li>
        <li class="leading-none text-dark">
          <span class="text-sm leading-none">/ About Us</span>
        </li>
      </ul>
    </div>
    <div class="page-hero-content mx-auto max-w-[768px] text-center">
      <h1 class="mb-5 mt-8">About Vivora Tools</h1>
      <p>
        We are building a small, practical library of online tools that help people work with text faster and without distractions.
      </p>
    </div>
  </div>
</section>

<section class="section pt-0">
  <div class="container">
    <div class="page-panel px-6 py-10 md:px-10">
      <div class="row items-center">
        <div class="lg:col-6">
          <img class="w-full object-contain" src="images/about/vivora-tools-illustration.svg" alt="Illustration of Vivora Tools text utilities" />
        </div>
        <div class="mt-8 lg:col-6 lg:mt-0">
          <h2>Why we built this site</h2>
          <p class="mt-5">
            We wanted a free, easy-to-use place where anyone can access common text helpers like word count, string length, and reverse string tools.
          </p>
          <p class="mt-4">
            The focus is on speed, clarity, and usefulness. No login. No friction. Just quick utilities that solve everyday tasks.
          </p>
        </div>
      </div>
    </div>
  </div>
</section>

<section class="section pt-0">
  <div class="container">
    <div class="page-panel about-services-panel px-6 py-10 md:px-10">
      <div class="mx-auto max-w-[760px] text-center">
        <span class="about-services-kicker">Our services</span>
        <h2 class="mt-4">Free online tools for everyday text work</h2>
        <p class="mt-5">
          Vivora Tools provides simple, browser-based utilities that help students, writers, developers, marketers, and everyday users clean, count, convert, and format text quickly.
        </p>
      </div>

      <div class="about-services-grid mt-10">
        <article class="about-service-card">
          <div class="about-service-icon"><i class="fa-solid fa-ruler-horizontal" aria-hidden="true"></i></div>
          <h3>Counting and measuring</h3>
          <p>
            Check string length, word totals, character counts, and other basic measurements when writing content, filling forms, or preparing documents.
          </p>
        </article>

        <article class="about-service-card">
          <div class="about-service-icon"><i class="fa-solid fa-font" aria-hidden="true"></i></div>
          <h3>Text conversion</h3>
          <p>
            Convert case, reverse strings, and run quick formatting changes without installing software or creating an account.
          </p>
        </article>

        <article class="about-service-card">
          <div class="about-service-icon"><i class="fa-solid fa-broom" aria-hidden="true"></i></div>
          <h3>Cleanup utilities</h3>
          <p>
            Remove extra spaces, whitespace, empty lines, and line breaks to make copied text cleaner and easier to reuse.
          </p>
        </article>

        <article class="about-service-card">
          <div class="about-service-icon"><i class="fa-solid fa-shield-halved" aria-hidden="true"></i></div>
          <h3>Free and privacy-aware</h3>
          <p>
            Our tools are free to access and designed to process text in the browser. We do not store the text or files you enter into the tools.
          </p>
        </article>
      </div>
    </div>
  </div>
</section>

<?php require __DIR__ . '/includes/footer.php'; ?>
