24 lines
502 B
TypeScript
24 lines
502 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: "Team History | Simba Robotics",
|
|
description: "Explore the history of Simba Robotics team, past members and robots.",
|
|
}
|
|
|
|
export default function HistoryLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
{children}
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|