44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { Geist, Geist_Mono } from 'next/font/google'
|
|
import { Navbar } from '@/components/layout/Navbar'
|
|
import { Footer } from '@/components/layout/Footer'
|
|
import './globals.css'
|
|
|
|
const geistSans = Geist({
|
|
variable: '--font-geist-sans',
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: '--font-geist-mono',
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: '白马家园—新质生产力产业集群',
|
|
description: 'AI时代小微创业+消费循环生态圈,军工技术赋能实体经济,人工智能驱动万商互联。',
|
|
icons: {
|
|
icon: '/logos.png',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN" className="scroll-smooth">
|
|
<body
|
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
|
>
|
|
<Navbar />
|
|
<main>
|
|
{children}
|
|
</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|