ss_website/app/(default)/contact-us/page.tsx

16 lines
401 B
TypeScript

export const metadata = {
title: 'Contact Us - Simply Synced LLC',
description: 'Reach out to us easily. Contact Simply Synced for expert assistance and solutions. Your questions and feedback are valuable to us.',
}
import Hero from '@/components/hero-contact'
import Content from './content'
export default function ContactUs() {
return (
<>
<Hero />
<Content />
</>
)
}