Skip to content

Commit

Permalink
cleaned main page
Browse files Browse the repository at this point in the history
  • Loading branch information
antiyro committed Feb 12, 2025
1 parent 847cf2c commit 34e8c92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 35 deletions.
Binary file added public/plugins.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 6 additions & 35 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"use client";

import Terminal from "./components/Terminal";
import { Github, Package, Twitter } from "lucide-react";
import Image from "next/image";
import { Inter } from "next/font/google";

Expand All @@ -10,19 +11,19 @@ const inter = Inter({
export default function Home() {
return (
<div className="min-h-screen bg-black text-white flex items-center justify-center p-4 py-24 md:py-4">
<div className="max-w-6xl w-full grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-12 items-center">
<div className="max-w-7xl w-full grid grid-cols-1 md:grid-cols-2 gap-8 md:gap-12 items-center">
{/* Left side - Title and Description */}
<div className="text-center md:text-left">
<div className="flex items-center gap-4 mb-6 justify-center md:justify-start">
<h1 className="text-2xl sm:text-3xl md:text-4xl font-medium text-white/90">
<h1 className="text-3xl sm:text-4xl md:text-5xl font-medium text-white/90">
<span className={`${inter.className} text-gray-100 font-light`}>
Build powerful and secured AI agents on Starknet.
Build powerful and secure AI Agents on Starknet.
</span>
</h1>
</div>
<div className="flex flex-col space-y-8">
<div className="flex gap-2 items-center justify-center md:justify-start">
<p className="font-ppsans text-md md:text-xl text-[#787B7E] ">
<p className="font-ppsans text-sm md:text-lg text-[#787B7E]">
powered by
</p>

Expand All @@ -34,36 +35,6 @@ export default function Home() {
className="w-28"
/>
</div>

<div className="flex space-x-6 justify-center md:justify-start">
<a
href="https://github.com/kasarlabs/starknet-agent-kit"
target="_blank"
rel="noopener noreferrer"
className="text-white hover:text-gray-300 transition-colors"
aria-label="GitHub Repository"
>
<Github size={28} className="sm:w-8 sm:h-8" />
</a>
<a
href="https://www.npmjs.com/package/starknet-agent-kit"
target="_blank"
rel="noopener noreferrer"
className="text-white hover:text-gray-300 transition-colors"
aria-label="NPM Package"
>
<Package size={28} className="sm:w-8 sm:h-8" />
</a>
<a
href="https://twitter.com/kasarlabs"
target="_blank"
rel="noopener noreferrer"
className="text-white hover:text-gray-300 transition-colors"
aria-label="Twitter Profile"
>
<Twitter size={28} className="sm:w-8 sm:h-8" />
</a>
</div>
</div>
</div>

Expand Down

0 comments on commit 34e8c92

Please sign in to comment.