ss_website/app/(default)/home-automation/page.tsx

17 lines
447 B
TypeScript
Raw Permalink Normal View History

2024-05-16 05:19:03 +00:00
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 />
</>
)
}