File size: 1,345 Bytes
0702eb8
 
 
ebd245c
0702eb8
 
 
 
ebd245c
0702eb8
ea7fe20
0702eb8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ebd245c
0702eb8
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"use client";

import Header from "@/app/components/header";
import Main from "@/app/components/ui/main-container";

export default function About() {

  return (
    <Main>
      <Header />
      <div className="rounded-xl shadow-xl p-4 mb-8 max-w-5xl w-full">
        <div className="max-w-2xl mx-auto p-4">
          <div className="bg-gradient-to-r from-blue-500 to-indigo-500 text-white p-8 rounded-lg shadow-lg">
            <h1 className="text-2xl md:text-4xl font-bold mb-4">About Smart Retrieval</h1>
            <p className="text-l mb-4">
              Welcome to Smart Retrieval, your go-to platform for efficient and streamlined information retrieval,
              especially in the realm of legal and compliance documents.
            </p>
            <p className="text-l mb-4">
              Our mission is to enhance user experiences at JTC by addressing key challenges such as manual search
              inefficiencies and rigid file naming conventions.
            </p>
            <p className="text-l mb-4">
              With cutting-edge technology, including Large Language Models (LLM) like GPT, BERT, and advanced chatbot
              integration, we aim to revolutionize the way JTC employees access and comprehend crucial documents.
            </p>
          </div>
        </div>
      </div>
    </Main>
  );
}