17 lines
447 B
TypeScript
17 lines
447 B
TypeScript
|
export const metadata = {
|
||
|
title: 'Home Automation - Simply Synced',
|
||
|
description: 'Experience a smarter home with our home automation services from Simply Synced. Elevate convenience and security with cutting-edge technology at your fingertips.',
|
||
|
}
|
||
|
|
||
|
import Hero from '@/components/hero-home-automation'
|
||
|
import Content from './content'
|
||
|
|
||
|
export default function HomeAutomation() {
|
||
|
return (
|
||
|
<>
|
||
|
<Hero />
|
||
|
<Content />
|
||
|
</>
|
||
|
)
|
||
|
}
|