import type { Metadata } from "next";
import { PageHero } from "@/components/marketing/page-hero";
import { PlaceholderNotice } from "@/components/marketing/placeholder-notice";
export const metadata: Metadata = {
title: "Blog",
description: "krypco news and notes — sample layout until real posts ship.",
};
const SAMPLES = [
{
tag: "Sample",
title: "Why hybrid: private speed with public anchors",
date: "Layout preview",
excerpt:
"A short note on the product thesis. This card is a placeholder — not a published article.",
},
{
tag: "Sample",
title: "Following a transaction through both layers",
date: "Layout preview",
excerpt:
"How the portal will show private blocks and public anchors side by side. Content TBD.",
},
] as const;
export default function BlogPage() {
return (
<>
Sample entries — not live news. A CMS can replace this list later.
{SAMPLES.map((post) => (
-
{post.tag}
{post.date}
{post.title}
{post.excerpt}
))}
>
);
}