24 lines
507 B
TypeScript
24 lines
507 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: "Robots | Simba Robotics",
|
|
description: "Explore the robots developed by Simba Robotics team for RoboMaster competitions.",
|
|
}
|
|
|
|
export default function RobotsLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
{children}
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|