Skip to content

Commit 14832d8

Browse files
committed
refactor: more content
1 parent 9cc5721 commit 14832d8

2 files changed

Lines changed: 202 additions & 12 deletions

File tree

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/types/routes.d.ts";
3+
import "./.next/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

src/app/page.tsx

Lines changed: 201 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ import {
88
BarChart3,
99
Users,
1010
Lightbulb,
11+
Server,
12+
User,
13+
Factory,
14+
Workflow,
15+
MessageSquare,
16+
Bot,
17+
Trophy,
1118
} from "lucide-react";
1219

1320
export default function Home() {
@@ -47,9 +54,11 @@ export default function Home() {
4754
<div className="flex flex-col justify-center space-y-4">
4855
<div className="space-y-2">
4956
<div className="font-mono text-sm text-muted-foreground">
50-
Founded
57+
Hackathon Wins
58+
</div>
59+
<div className="text-2xl font-bold flex items-center gap-2">
60+
<Trophy className="h-5 w-5 text-primary" />3
5161
</div>
52-
<div className="text-2xl font-bold">2016</div>
5362
</div>
5463
<div className="space-y-2">
5564
<div className="font-mono text-sm text-muted-foreground">
@@ -132,6 +141,50 @@ export default function Home() {
132141
technologies and next-generation blockchain solutions
133142
</p>
134143
</div>
144+
145+
{/* AI Agents Section */}
146+
<div className="mb-12">
147+
<h3 className="mb-4 flex items-center gap-2 text-lg font-semibold">
148+
<Bot className="h-5 w-5 text-primary" />
149+
Autonomous AI Agents
150+
</h3>
151+
<div className="mb-6 text-sm text-muted-foreground">
152+
We build and operate production AI agents that automate workflows
153+
and handle complex tasks autonomously.
154+
</div>
155+
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-4">
156+
<div className="space-y-2 rounded-none border border-border bg-muted/20 p-4">
157+
<MessageSquare className="h-5 w-5 text-primary" />
158+
<h4 className="font-medium">Social Media Outreach</h4>
159+
<p className="text-sm text-muted-foreground">
160+
Automated content creation and engagement across platforms
161+
</p>
162+
</div>
163+
<div className="space-y-2 rounded-none border border-border bg-muted/20 p-4">
164+
<Workflow className="h-5 w-5 text-primary" />
165+
<h4 className="font-medium">Communications Intake</h4>
166+
<p className="text-sm text-muted-foreground">
167+
Pre-processing and triaging of incoming communications
168+
</p>
169+
</div>
170+
<div className="space-y-2 rounded-none border border-border bg-muted/20 p-4">
171+
<Factory className="h-5 w-5 text-primary" />
172+
<h4 className="font-medium">Coding Factory</h4>
173+
<p className="text-sm text-muted-foreground">
174+
Automated code generation and development workflows
175+
</p>
176+
</div>
177+
<div className="space-y-2 rounded-none border border-border bg-muted/20 p-4">
178+
<User className="h-5 w-5 text-primary" />
179+
<h4 className="font-medium">Personal Assistance</h4>
180+
<p className="text-sm text-muted-foreground">
181+
Beyond coding - full personal and business support
182+
</p>
183+
</div>
184+
</div>
185+
</div>
186+
187+
{/* Core Services */}
135188
<div className="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
136189
<div className="space-y-3">
137190
<div className="flex h-10 w-10 items-center justify-center rounded-none border border-border bg-muted/20">
@@ -167,10 +220,9 @@ export default function Home() {
167220
<div className="flex h-10 w-10 items-center justify-center rounded-none border border-border bg-muted/20">
168221
<Shield className="h-5 w-5" />
169222
</div>
170-
<h3 className="font-medium">Security Solutions</h3>
223+
<h3 className="font-medium">Infrastructure & Deployment</h3>
171224
<p className="text-sm text-muted-foreground">
172-
Elliptic curve cryptography implementations and smart-contract
173-
centric comprehensive security auditing
225+
On-prem, dedicated, and cloud compute with HashiCorp stack
174226
</p>
175227
</div>
176228
<div className="space-y-3">
@@ -185,13 +237,11 @@ export default function Home() {
185237
</div>
186238
<div className="space-y-3">
187239
<div className="flex h-10 w-10 items-center justify-center rounded-none border border-border bg-muted/20">
188-
<Lightbulb className="h-5 w-5" />
240+
<Server className="h-5 w-5" />
189241
</div>
190-
<h3 className="font-medium">Consultancy & Bootstrapping</h3>
242+
<h3 className="font-medium">DevOps & Orchestration</h3>
191243
<p className="text-sm text-muted-foreground">
192-
Assisting businesses transform ideas into reality through
193-
strategic and technical consulting their startups from concept
194-
to launch
244+
Ansible, Pulumi, Terraform, Consul, Vault, Nomad
195245
</p>
196246
</div>
197247
</div>
@@ -204,6 +254,146 @@ export default function Home() {
204254
//
205255
</div>
206256

257+
{/* Tech Stack Section */}
258+
<section id="stack" className="py-16">
259+
<div className="mb-8 max-w-2xl space-y-3">
260+
<h2 className="text-xl font-semibold">Our Technology Stack</h2>
261+
<p className="text-muted-foreground">
262+
Production-proven tools and frameworks we use to build reliable
263+
systems
264+
</p>
265+
</div>
266+
267+
<div className="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
268+
{/* AI & Automation */}
269+
<div className="space-y-3 rounded-none border border-border p-5">
270+
<h3 className="mb-2 font-semibold">AI & Automation</h3>
271+
<div className="flex flex-wrap gap-2">
272+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
273+
CrewAI
274+
</span>
275+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
276+
OpenClaw
277+
</span>
278+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
279+
n8n
280+
</span>
281+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
282+
LangChain
283+
</span>
284+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
285+
RAG Systems
286+
</span>
287+
</div>
288+
</div>
289+
290+
{/* Development */}
291+
<div className="space-y-3 rounded-none border border-border p-5">
292+
<h3 className="mb-2 font-semibold">Development</h3>
293+
<div className="flex flex-wrap gap-2">
294+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
295+
TypeScript
296+
</span>
297+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
298+
JavaScript
299+
</span>
300+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
301+
Python
302+
</span>
303+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
304+
C++
305+
</span>
306+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
307+
Rust
308+
</span>
309+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
310+
Graphene
311+
</span>
312+
</div>
313+
</div>
314+
315+
{/* Infrastructure */}
316+
<div className="space-y-3 rounded-none border border-border p-5">
317+
<h3 className="mb-2 font-semibold">Infrastructure</h3>
318+
<div className="flex flex-wrap gap-2">
319+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
320+
Consul
321+
</span>
322+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
323+
Vault
324+
</span>
325+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
326+
Nomad
327+
</span>
328+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text text-sm">
329+
Ansible
330+
</span>
331+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
332+
Pulumi
333+
</span>
334+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
335+
Terraform
336+
</span>
337+
</div>
338+
</div>
339+
340+
{/* Deployment Models */}
341+
<div className="space-y-3 rounded-none border border-border p-5">
342+
<h3 className="mb-2 font-semibold">Deployment Models</h3>
343+
<div className="flex flex-wrap gap-2">
344+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
345+
Cloud
346+
</span>
347+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
348+
On-Premise
349+
</span>
350+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
351+
Dedicated
352+
</span>
353+
</div>
354+
</div>
355+
356+
{/* Blockchain */}
357+
<div className="space-y-3 rounded-none border border-border p-5">
358+
<h3 className="mb-2 font-semibold">Blockchain & Web3</h3>
359+
<div className="flex flex-wrap gap-2">
360+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
361+
Solana
362+
</span>
363+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
364+
Anchor
365+
</span>
366+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
367+
Graphene
368+
</span>
369+
</div>
370+
</div>
371+
372+
{/* Tools */}
373+
<div className="space-y-3 rounded-none border border-border p-5">
374+
<h3 className="mb-2 font-semibold">Agent & Automation</h3>
375+
<div className="flex flex-wrap gap-2">
376+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
377+
CrewAI
378+
</span>
379+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
380+
OpenClaw
381+
</span>
382+
<span className="rounded-none border border-border bg-muted/10 px-3 py-1 text-sm">
383+
n8n
384+
</span>
385+
</div>
386+
</div>
387+
</div>
388+
</section>
389+
390+
<div
391+
className="font-mono text-sm text-muted-foreground/30 select-none"
392+
aria-hidden="true"
393+
>
394+
//
395+
</div>
396+
207397
{/* CTA Section */}
208398
<section className="py-16">
209399
<div className="rounded-none border border-border bg-muted/20 p-12 text-center">
@@ -214,7 +404,7 @@ export default function Home() {
214404
Let's discuss how ChainSquad can help bring your vision to reality
215405
</p>
216406
<a
217-
href="mailto:info@chainsquad.com"
407+
href="/contact"
218408
className="bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 inline-flex cursor-pointer items-center justify-center gap-2 whitespace-nowrap rounded-none font-medium text-sm outline-none transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 h-11 px-6"
219409
>
220410
<Mail className="h-4 w-4" />

0 commit comments

Comments
 (0)