ss_website/app/(default)/pc-building-and-repair/page.tsx

17 lines
439 B
TypeScript
Raw Permalink Normal View History

2024-05-16 05:19:03 +00:00
export const metadata = {
title: 'PC Building & Repair - Simply Synced',
description: 'Boost your PC performance with our expert building & repair services at Simply Synced. Fast, reliable solutions for your computer needs.',
}
import Hero from '@/components/hero-pc-building-and-repair'
import Content from './content'
export default function PCBuildingAndRepair() {
return (
<>
<Hero />
<Content />
</>
)
}