Merge version_3 into main #4

Merged
bender merged 1 commits from version_3 into main 2026-03-06 18:39:21 +00:00

View File

@@ -1,54 +1,25 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Studio - Creative Digital Solutions & Design", description: "Transform your vision into reality with our creative digital design and strategy services. Modern solutions for innovative brands.", keywords: "digital design, creative agency, web design, branding, user experience, digital strategy", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Studio - Creative Digital Solutions", description: "Transform your vision into reality with our creative digital design and strategy services.", type: "website", siteName: "Studio", images: [
{
url: "http://img.b2bpic.net/free-photo/elegant-vintage-library-with-wooden-shelves-sophisticated-green-lamps_482257-125675.jpg", alt: "Studio - Creative Digital Solutions"},
],
},
twitter: {
card: "summary_large_image", title: "Studio - Creative Digital Solutions", description: "Transform your vision into reality with our creative digital design and strategy services.", images: ["http://img.b2bpic.net/free-photo/elegant-vintage-library-with-wooden-shelves-sophisticated-green-lamps_482257-125675.jpg"],
},
};
title: "Studio - Creative Digital Solutions", description: "Crafting beautiful digital experiences that transform your vision into reality."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}