17 lines
273 B
TypeScript
17 lines
273 B
TypeScript
|
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 />
|
||
|
</>
|
||
|
)
|
||
|
}
|