From ac414694274a806c7e063e43c6462bbbf7bcb900 Mon Sep 17 00:00:00 2001 From: sjungwon03 Date: Fri, 31 Jul 2026 13:58:05 +0900 Subject: [PATCH] chore: remove leftover conflict files and patch artifacts --- apps/theorvane/app/page.tsx.orig | 98 -------------------------------- apps/theorvane/app/page.tsx.rej | 9 --- update.patch | 29 ---------- 3 files changed, 136 deletions(-) delete mode 100644 apps/theorvane/app/page.tsx.orig delete mode 100644 apps/theorvane/app/page.tsx.rej delete mode 100644 update.patch diff --git a/apps/theorvane/app/page.tsx.orig b/apps/theorvane/app/page.tsx.orig deleted file mode 100644 index 3bb855f..0000000 --- a/apps/theorvane/app/page.tsx.orig +++ /dev/null @@ -1,98 +0,0 @@ -import { ExternalLink, SkipLink } from "@theorvane/ui"; - -import { ProductEditorial } from "../components/product-editorial"; - -const siteUrl = "https://theorvane.tech/"; -const github = "https://github.com/Theorvane"; -const typeMcp = "https://typemcp.theorvane.tech/"; -const typeChain = "https://typechain.theorvane.tech/"; -const openScene = "https://openscene.app/"; - -const products = [ - { - description: "A decorator-first TypeScript toolkit for MCP metadata declarations and immutable reads.", - href: typeMcp, - icon: "/products/typemcp.svg", - iconAlt: "TypeMCP official product mark", - name: "TypeMCP", - number: "01", - signal: "MCP contracts", - }, - { - description: "A decorator-first, type-safe authoring layer for LangChain JS tools and agents. It keeps schemas and integration boundaries explicit while applications retain ownership of models, credentials, policy enforcement, and deployment.", - href: typeChain, - icon: "/products/typechain.svg", - iconAlt: "TypeChain official product mark", - name: "TypeChain", - number: "02", - signal: "Typed tools", - }, - { - description: "A local-first, open-source video editor for recording, editing, and exporting footage on your device. No cloud uploads, accounts, or analytics.", - href: openScene, - image: "/editorial-signal/products/openscene.webp", - imageAlt: "OpenScene editorial artwork showing a local obsidian archive case and porcelain film strips.", - name: "OpenScene", - number: "03", - signal: "Local workflow", - }, -] as const; - -const schema = { - "@context": "https://schema.org", - "@graph": [ - { "@type": "Organization", "@id": `${siteUrl}#organization`, name: "Theorvane", url: siteUrl, description: "Independent software studio building focused, verifiable developer tools.", sameAs: [github] }, - { "@type": "WebSite", "@id": `${siteUrl}#website`, name: "Theorvane", url: siteUrl, publisher: { "@id": `${siteUrl}#organization` } }, - ], -}; - -export default function HomePage() { - return <> - -