48 lines
1.4 KiB
TypeScript
48 lines
1.4 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 { Roboto } from "next/font/google";
|
|
import { Press_Start_2P } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Creative Portfolio | Professional Design Showcase',
|
|
description: 'Showcasing high-impact design projects, branding, and motion graphics. Explore my professional creative portfolio.',
|
|
openGraph: {
|
|
"title": "Creative Portfolio",
|
|
"description": "Professional design and strategy showcase.",
|
|
"siteName": "Portfolio"
|
|
},
|
|
};
|
|
|
|
|
|
const pressStart = Press_Start_2P({ variable: "--font-pixel", subsets: ["latin"], weight: ["400"] });
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${pressStart.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|