Nicholai b1feda521c Update configuration and middleware for Cloudflare integration; add Space Grotesk font and improve media route handling
- Changed wrapper settings in open-next.config.ts to use "cloudflare-node" and "cloudflare-edge".
- Updated main entry point in wrangler.toml to point to ".open-next/worker.js".
- Modified middleware to allow access to the speakers project path.
- Added Space Grotesk font to layout.tsx for enhanced typography.
- Improved media route handling by resolving parameters correctly in route.ts.
- Adjusted ServiceCard component to use a more specific type for icon handling.
2025-11-18 13:37:20 -07:00

20 lines
500 B
TypeScript

import { Metadata } from 'next';
import { SpeakersPageClient } from './speakers-client';
export const metadata: Metadata = {
title: 'SPEAKERS | Biohazard VFX',
description: '3D visualization gallery',
alternates: {
canonical: '/projects/speakers',
},
openGraph: {
title: 'SPEAKERS | Biohazard VFX',
description: '3D visualization gallery.',
type: 'website',
},
};
export default function SpeakersPage() {
return <SpeakersPageClient />;
}