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