27 lines
503 B
TypeScript
27 lines
503 B
TypeScript
import './globals.css'
|
|
import { Inter } from 'next/font/google'
|
|
import Navbar from '@/components/Navbar'
|
|
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const metadata = {
|
|
title: '影视星河摄影社团',
|
|
description: '影视星河摄影社团官方网站',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
<Navbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
|