page.tsx 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import type { Metadata } from "next";
  2. import Link from "next/link";
  3. import { BrandLogo } from "@/components/brand/brand-logo";
  4. import { PageHero } from "@/components/marketing/page-hero";
  5. import { buttonVariants } from "@/components/ui/button";
  6. import { cn } from "@/lib/utils";
  7. export const metadata: Metadata = {
  8. title: "About",
  9. description: "What krypco is and why the hybrid model exists.",
  10. };
  11. export default function AboutPage() {
  12. return (
  13. <>
  14. <PageHero
  15. eyebrow="About"
  16. title="Built for both privacy and proof"
  17. description="krypco is a modern hybrid blockchain: a high-performance permissioned layer paired with public-chain verifiability."
  18. />
  19. <section className="section-pad">
  20. <div className="mx-auto grid max-w-6xl items-start gap-12 px-5 lg:grid-cols-[0.9fr_1.1fr] lg:px-8">
  21. <div className="flex justify-center rounded-3xl border border-border bg-card p-12">
  22. <BrandLogo height={120} />
  23. </div>
  24. <div className="space-y-6">
  25. <p className="text-base leading-relaxed text-muted-foreground">
  26. Teams should not have to choose between “everything public” and
  27. “trust us, it’s private.” krypco keeps execution where access can
  28. be controlled, and anchors commitments where anyone can verify.
  29. </p>
  30. <p className="text-base leading-relaxed text-muted-foreground">
  31. The public website tells that story. The portal is where you
  32. follow the chain — blocks, transactions, and the hybrid path.
  33. </p>
  34. <div className="flex flex-wrap gap-3 pt-2">
  35. <Link href="/how-it-works" className={cn(buttonVariants())}>
  36. How it works
  37. </Link>
  38. <Link
  39. href="/contact"
  40. className={cn(buttonVariants({ variant: "outline" }))}
  41. >
  42. Contact
  43. </Link>
  44. </div>
  45. </div>
  46. </div>
  47. </section>
  48. </>
  49. );
  50. }