File size: 8,419 Bytes
c09f67c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
"use client";

import Link from "next/link";
import { MaterialIcon } from "../homepage/icon-mapping";

export function FeaturesGridSection() {
  return (
    <section className="bg-background py-12 sm:py-16 lg:py-24">
      <div className="max-w-[1400px] mx-auto">
        <div className="text-center space-y-4 mb-10 sm:mb-12">
          <h2 className="font-serif text-2xl sm:text-2xl text-foreground">
            Everything you need to run your business finances
          </h2>
          <p className="hidden sm:block font-sans text-base text-muted-foreground leading-normal max-w-2xl mx-auto px-4">
            Dashboards, insights, transactions, invoicing, time tracking, and
            files all connected in one system.
          </p>
        </div>

        <div className="flex flex-col gap-8 sm:gap-10 max-w-sm sm:max-w-none mx-auto">
          <div className="grid grid-cols-2 gap-6 sm:flex sm:justify-center sm:gap-20">
            <Link
              href="/assistant"
              className="flex flex-col items-center w-full sm:w-[150px] touch-manipulation"
              style={{ WebkitTapHighlightColor: "transparent" }}
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="widgets"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Assistant
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Financial answers
                </p>
              </div>
            </Link>

            <Link
              href="/insights"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="trending_up"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Insights
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Weekly updates
                </p>
              </div>
            </Link>

            <Link
              href="/transactions"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="list_alt"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Transactions
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Money movement
                </p>
              </div>
            </Link>

            <Link
              href="/inbox"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="inbox"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Inbox
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Receipt matching
                </p>
              </div>
            </Link>
          </div>

          <div className="grid grid-cols-2 gap-6 sm:flex sm:justify-center sm:gap-20">
            <Link
              href="/time-tracking"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="timer"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Time tracking
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Project hours
                </p>
              </div>
            </Link>

            <Link
              href="/invoicing"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="description"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Invoicing
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Invoice management
                </p>
              </div>
            </Link>

            <Link
              href="/customers"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="scatter_plot"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Customers
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Customer performance
                </p>
              </div>
            </Link>

            <Link
              href="/file-storage"
              className="flex flex-col items-center w-full sm:w-[150px]"
            >
              <div className="bg-secondary border border-border w-[60px] h-[60px] flex items-center justify-center rounded-none mb-4 hover:border-muted-foreground transition-all duration-200">
                <MaterialIcon
                  name="folder_zip"
                  className="text-muted-foreground "
                  size={24}
                />
              </div>
              <div className="flex flex-col items-center text-center">
                <h3 className="font-sans text-sm text-foreground leading-[21px]">
                  Files
                </h3>
                <p className="font-sans text-sm text-muted-foreground leading-[21px]">
                  Document storage
                </p>
              </div>
            </Link>
          </div>
        </div>
      </div>
    </section>
  );
}