higgys-android-website/app/videos/page.tsx

13 lines
371 B
TypeScript

import type { Metadata } from "next"
import { VideosContent } from "./videos-content"
export const metadata: Metadata = {
title: "Video Tutorials",
description:
"Watch step-by-step video guides for setting up and using your Higgy's Android Box. Tutorials for beginners and advanced users.",
}
export default function VideosPage() {
return <VideosContent />
}