ss_website/app/(default)/about/page.tsx

17 lines
273 B
TypeScript
Raw Normal View History

2024-05-16 05:19:03 +00:00
export const metadata = {
title: 'About Us - Simply Synced',
description: 'About Us page',
}
import Hero from '@/components/hero-about'
import Content from './content'
export default function About() {
return (
<>
<Hero />
<Content />
</>
)
}