19 lines
863 B
TypeScript
19 lines
863 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import { AboutClient } from '../../components/AboutClient';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'About',
|
||
|
|
description: 'Learn about Puffin Offset\'s mission to make carbon offsetting accessible and effective for the maritime industry. Discover our values of transparency, quality, partnership, and innovation.',
|
||
|
|
keywords: ['carbon offsetting', 'maritime sustainability', 'yacht carbon offsets', 'marine environmental impact', 'sustainable yachting'],
|
||
|
|
openGraph: {
|
||
|
|
title: 'About Puffin Offset - Maritime Carbon Offsetting Solutions',
|
||
|
|
description: 'Leading the way in maritime carbon offsetting with transparent, verified projects for yacht owners and operators.',
|
||
|
|
type: 'website',
|
||
|
|
url: 'https://puffinoffset.com/about',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function AboutPage() {
|
||
|
|
return <AboutClient />;
|
||
|
|
}
|