File size: 2,055 Bytes
e0eaa09
4901b1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { Badge, Card } from '@/components/base';
import Image from 'next/image';

export function CustomizationSection() {
  return (
    <section className="container space-y-16 py-24">
      <div className="space-y-4 text-center">
        <h2 className="font-heading text-4xl md:text-5xl lg:text-6xl">Highly Customizable</h2>
        <p className="text-xl text-muted-foreground">Customize Jan to match your needs and preferences.</p>
      </div>

      <div className="grid gap-8 md:grid-cols-2">
        {/* Assistants & Memory Card */}
        <Card className="space-y-4 p-6">
          <div className="space-y-2">
            <div className="flex items-center gap-2">
              <h3 className="text-2xl font-semibold">Assistants & Memory</h3>
              <Badge variant="secondary" className="bg-blue-100 text-blue-700 hover:bg-blue-100">
                Coming Soon
              </Badge>
            </div>
            <p className="text-muted-foreground">
              Create personalized AI assistants that remember your conversations and execute specific tasks across your
              systems.
            </p>
          </div>

          <Image
            src="https://jan.ai/assets/images/homepage/assistant-light.png"
            alt="App Screenshot Feature"
            width={800}
            height={800}
            className="object-contain"
          />
        </Card>

        {/* Extensions Card */}
        <Card className="space-y-4 p-6">
          <div className="space-y-2">
            <h3 className="text-2xl font-semibold">Extensions</h3>
            <p className="text-muted-foreground">
              Customize Jan with Extensions, that range from Cloud AI connectors, tools, data connectors.
            </p>
          </div>

          <Image
            src="https://jan.ai/assets/images/homepage/extension-light.png"
            alt="App Screenshot Feature"
            width={800}
            height={800}
            className="object-contain"
          />
        </Card>
      </div>
    </section>
  );
}