From d85f636a940b9c6e5f05de109f2400a7ebd6c7ff Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:52:15 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 1433 +------------------------------------------- 1 file changed, 16 insertions(+), 1417 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe0371e..ce72c74 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1435 +1,35 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dieter Studio - AI Music & Media Production", - description: "Create professional music in your browser with AI-powered songwriting, multi-stem mixing, beat detection, and integrated monetization guidance. No software needed.", - keywords: "AI music generation, DAW, music production, browser-based studio, song creator, music mixing, AI songwriter", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Dieter Studio - AI Music & Media Production", - description: "Your all-in-one browser-based music studio with AI assistance, professional mixing tools, and built-in monetization guidance.", - type: "website", - siteName: "Dieter Studio", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahi2vwDB5Ta9isxbMIvH8BKpyQ/a-modern-sleek-browser-based-music-produ-1773052781984-0301b236.png", - alt: "Dieter Studio music production interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Dieter Studio - Create Music in Your Browser", - description: "AI-powered music production, professional mixing, and monetization guidance—all online.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahi2vwDB5Ta9isxbMIvH8BKpyQ/a-modern-sleek-browser-based-music-produ-1773052781984-0301b236.png", - ], - }, -}; + title: "Dieter Studio - AI-Powered Music Production", description: "Create professional music in your browser with AI songwriting, generation, mixing, and monetization guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +