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