- 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.
20 lines
500 B
TypeScript
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 />;
|
|
}
|