17 lines
431 B
TypeScript
17 lines
431 B
TypeScript
export const metadata = {
|
|
title: 'Home Networking - Simply Synced',
|
|
description: 'Let Simply Synced unlock seamless connectivity with our home networking services. Reliable, fast, and secure networks for your digital lifestyle.',
|
|
}
|
|
|
|
import Hero from '@/components/hero-home-networking'
|
|
import Content from './content'
|
|
|
|
export default function HomeNetworking() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
<Content />
|
|
</>
|
|
)
|
|
}
|