From 64982fa823bcf2e10ee710d0ed001efa136af3d2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:01:26 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 -------------------------------------------- 1 file changed, 1419 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22fbed0..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +0,0 @@ -import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Hyla - Modern Design & Digital Experience", description: "Discover Hyla, the elegant platform transforming digital experiences with intuitive design, advanced performance, and seamless collaboration.", keywords: "design, digital experience, modern platform, collaboration, productivity", metadataBase: new URL("https://hyla.example.com"), - alternates: { - canonical: "https://hyla.example.com"}, - openGraph: { - title: "Hyla - Modern Design & Digital Experience", description: "Experience the future of elegant design with Hyla", url: "https://hyla.example.com", siteName: "Hyla", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/voice-translator-app-concept_23-2148626239.jpg", alt: "Hyla Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hyla - Modern Design & Digital Experience", description: "Experience the future of elegant design with Hyla", images: ["http://img.b2bpic.net/free-vector/voice-translator-app-concept_23-2148626239.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -