ss_website/app/(default)/pc-server-maintenance/page.tsx

17 lines
443 B
TypeScript
Raw Permalink Normal View History

2024-05-16 05:19:03 +00:00
export const metadata = {
title: 'PC & Service Maintenance - Simply Synced',
description: 'Ensure peak performance and security with our business PC and server maintenance services. Trust Simply Synced for reliable IT solutions.',
}
import Hero from '@/components/hero-pc-server-maintenance'
import Content from './content'
export default function PCServerMaintenance() {
return (
<>
<Hero />
<Content />
</>
)
}