diff --git a/src/app/(home)/_components/about-contact.tsx b/src/app/(home)/_components/about-contact.tsx new file mode 100644 index 0000000..0eb19ac --- /dev/null +++ b/src/app/(home)/_components/about-contact.tsx @@ -0,0 +1,76 @@ +import { ArrowUpRight } from "lucide-react"; +import Link from "next/link"; +import { links } from "@/lib/shared"; + +export function AboutContact() { + return ( + <> +
+
+
+

About

+

+ Built for the next session. +

+
+
+

+ Kimetsu is an open-source project created by{" "} + + Rodrigo Córdoba + + . It gives coding agents a local place to keep project decisions, + conventions, and fixes, so useful knowledge carries across + sessions. +

+

+ Built in Rust and backed by SQLite, Kimetsu works alongside the + tools you already use. The source, documentation, and benchmarks + are public, so you can inspect how it works and make it your own. +

+
+ + Explore the source → + + + Read the documentation → + +
+
+
+
+
+
+
+

Contact

+

+ Let’s talk about Kimetsu. +

+

+ Have a question, an idea, or something you’d like to build + together? Get in touch with Rodrigo on LinkedIn. +

+
+ + Connect on LinkedIn + + +
+
+ + ); +} diff --git a/src/app/(home)/page.tsx b/src/app/(home)/page.tsx index 53c51a0..ed0ce7d 100644 --- a/src/app/(home)/page.tsx +++ b/src/app/(home)/page.tsx @@ -1,6 +1,7 @@ import { ArrowRight, Database, GitBranch, Lock, Terminal } from "lucide-react"; import Link from "next/link"; import { links } from "@/lib/shared"; +import { AboutContact } from "./_components/about-contact"; import { ExploreSection } from "./_components/explore-section"; import { BrainSharing } from "./_components/home-visuals"; import { ProjectsSection } from "./_components/projects-section"; @@ -279,6 +280,7 @@ export default function HomePage() { +