From 27246a5aaa6262c18d61a5f6e7f963dcff3b2625 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 08:40:19 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 67 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 59 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 031f27f..2b975f7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); export const metadata: Metadata = { - title: "MORPHO - Թվային լուծումներ բիզնեսի աճի համար", - description: "MORPHO web studio. Մարքեթինգ, IT վերլուծում, դիզայն և կրթություն. Մենք կառուցում ենք համակարգեր, ոչ պարզապես ծառայություններ.", - keywords: "թվային լուծումներ, մարքեթինգ, IT, դիզայն, կրթություն, բիզնես խորհրդատվություն", - openGraph: { - title: "MORPHO - Թվային լուծումներ բիզնեսի համար", - description: "Մարքեթինգ, IT, դիզայն և կրթություն՝ մեկ էկոհամակարգում։", - type: "website", - siteName: "MORPHO", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWBsybEoMJ3FPQGOLn6bwcclIP/uploaded-1772698837735-y4s19q87.png", - alt: "MORPHO Web Studio", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MORPHO - Թվային լուծումներ", - description: "Web studio. Մարքեթինգ, IT, դիզայն, կրթություն", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWBsybEoMJ3FPQGOLn6bwcclIP/uploaded-1772698837735-y4s19q87.png", - ], - }, -}; + title: "MORPHO — թվային լուծումներ բիզնեսի աճի համար", description: "Մարքեթինգ, IT, դիզայն և կրթություն՝ մեկ էկոհամակարգում։ Կառուցում ենք համակարգեր, ոչ պարզապես ծառայություններ։"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +