ss_website/app/(default)/web-presence/page.tsx

17 lines
416 B
TypeScript
Raw Normal View History

2024-05-16 05:19:03 +00:00
export const metadata = {
title: 'Web Presence - Simply Synced',
description: 'Boost your online visibility and impact with Simply Synceds web presence services. Drive growth, engagement, and success. Get started now!"',
}
import Hero from '@/components/hero-web-presence'
import Content from './content'
export default function WebPresence() {
return (
<>
<Hero />
<Content />
</>
)
}