11 lines
354 B
TypeScript
11 lines
354 B
TypeScript
import { AboutPageContent } from '@/components/about/AboutPageContent';
|
|
import { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'About Us | Sent',
|
|
description: 'Learn more about Sent and our mission to create personalized gift boxes for every occasion.'
|
|
};
|
|
|
|
export default function AboutPage() {
|
|
return <AboutPageContent />;
|
|
}
|