mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-14 16:48:02 -05:00
26 lines
486 B
TypeScript
26 lines
486 B
TypeScript
import { Metadata } from "next"
|
|
|
|
import { ProgramPageContent } from "."
|
|
|
|
export const metadata: Metadata = {
|
|
title: "ZK education programs",
|
|
description: "Join our free programs to start your journey!",
|
|
openGraph: {
|
|
images: [
|
|
{
|
|
url: "/programs-page-banner.png",
|
|
width: 1200,
|
|
height: 630,
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default function ProgramsPage() {
|
|
return (
|
|
<div className="flex flex-col">
|
|
<ProgramPageContent />
|
|
</div>
|
|
)
|
|
}
|