24 lines
491 B
TypeScript
24 lines
491 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import Header from "@/components/header"
|
|
import Footer from "@/components/footer"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Privacy Policy | Simba Robotics",
|
|
description: "Privacy policy for Simba Robotics website and services.",
|
|
}
|
|
|
|
export default function PrivacyLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
{children}
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|