19 lines
821 B
TypeScript
19 lines
821 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import { ContactClient } from '../../components/ContactClient';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Contact',
|
||
|
|
description: 'Get in touch with Puffin Offset to discuss carbon offsetting solutions for your yacht. Our team is ready to help you start your sustainability journey.',
|
||
|
|
keywords: ['contact', 'carbon offset inquiry', 'yacht sustainability', 'offset consultation', 'maritime carbon solutions'],
|
||
|
|
openGraph: {
|
||
|
|
title: 'Contact Puffin Offset - Maritime Carbon Offsetting Experts',
|
||
|
|
description: 'Ready to start your sustainability journey? Contact our team today for personalized carbon offsetting solutions.',
|
||
|
|
type: 'website',
|
||
|
|
url: 'https://puffinoffset.com/contact',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function ContactPage() {
|
||
|
|
return <ContactClient />;
|
||
|
|
}
|