Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-06 21:10:10 +00:00

View File

@@ -1,51 +1,18 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Art Studio Classes | Painting, Drawing & Sculpture for All Levels", description: "Join our welcoming art studio for beginner-friendly classes in painting, drawing, and sculpture. Learn from experienced instructors in a supportive creative community.", keywords: "art classes, painting classes, drawing lessons, sculpture workshops, art studio, creative community, beginner art, local art school", metadataBase: new URL("https://example.com"),
openGraph: {
title: "Art Studio Classes | Learn Painting, Drawing & Sculpture", description: "Unleash your creative potential with beginner-friendly art classes led by experienced instructors in a supportive community.", siteName: "Art Studio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/full-shot-young-people-making-banners_23-2149343467.jpg", alt: "Art studio creative workspace"
}
]
},
twitter: {
card: "summary_large_image", title: "Art Studio | Creative Classes for Everyone", description: "Join our welcoming art community. Classes in painting, drawing, and sculpture for all levels.", images: ["http://img.b2bpic.net/free-photo/full-shot-young-people-making-banners_23-2149343467.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Art Studio - Creative Classes for All Levels", description: "Join our welcoming art studio for beginner-friendly classes in painting, drawing, and sculpture. Learn from experienced instructors in a supportive community environment."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1380,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}