51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Figtree } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'NextGen Business Tips | Entrepreneurship for Students',
|
|
description: 'The professional educational platform for students to master business tips, startup ideas, and money habits.',
|
|
keywords: ["entrepreneurship for students, teen startups, business tips, personal finance for teenagers, startup ideas"],
|
|
openGraph: {
|
|
"title": "NextGen Business Tips",
|
|
"description": "Business education and startup guidance for the next generation of founders.",
|
|
"siteName": "NextGen Business Tips",
|
|
"type": "website"
|
|
},
|
|
};
|
|
|
|
const figtree = Figtree({
|
|
variable: "--font-figtree",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${figtree.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|