diff --git a/clients/apps/web/src/app/(main)/(website)/(landing)/(mdx)/blog/page.tsx b/clients/apps/web/src/app/(main)/(website)/(landing)/(mdx)/blog/page.tsx new file mode 100644 index 0000000000..0d4b854f8a --- /dev/null +++ b/clients/apps/web/src/app/(main)/(website)/(landing)/(mdx)/blog/page.tsx @@ -0,0 +1,91 @@ +import ArrowForwardOutlined from '@mui/icons-material/ArrowForwardOutlined' +import { Metadata } from 'next' +import Link from 'next/link' + +const posts = [ + { + title: 'Announcing our $10M Seed Round', + slug: 'polar-seed-announcement', + description: + "We're thrilled to announce our $10M Seed round led by Accel, with continued support from Abstract & Mischief, alongside an exceptional group of angels", + date: '2025-06-17', + }, + { + title: 'Mitchell Hashimoto joins Polar as an advisor', + slug: 'mitchell-hashimoto-joins-polar-as-an-advisor', + description: + "Today, we're honoured to announce that Mitchell Hashimoto is joining Polar as an advisor!", + date: '2024-04-02', + }, +] + +export const metadata: Metadata = { + title: 'Blog', + openGraph: { + siteName: 'Polar', + type: 'website', + images: [ + { + url: 'https://polar.sh/assets/brand/polar_og.jpg', + width: 1200, + height: 630, + }, + ], + }, + twitter: { + card: 'summary_large_image', + images: [ + { + url: 'https://polar.sh/assets/brand/polar_og.jpg', + width: 1200, + height: 630, + alt: 'Polar', + }, + ], + }, +} + +export default function BlogIndex() { + return ( +
+
+
+
+
+
+

Blog

+
+
+
+ {posts.map((post) => ( + +
+ + +
+

{post.title}

+

+ {post.description} +

+ + ))} +
+
+
+
+
+ ) +}