From d603694ae39ab774f640b2f6c7b2ebab6039fdfe Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:19:20 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 11 insertions(+), 1404 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0480414..15c4b52 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webild | Strony Premium dla NGO, Instytucji i Firm", description: "Nowoczesne strony internetowe z React, Next.js i custom CMS. Wsparcie 24/7, optymalizacja do dotacji UE. Eksperta od 2017 roku. Konsultacja bezplatna.", keywords: "strony internetowe, Next.js, React, custom CMS, NGO, instytucje publiczne, dotacje UE, web development", metadataBase: new URL("https://webild.dev"), - alternates: { - canonical: "https://webild.dev" - }, - openGraph: { - title: "Webild | Strony Premium dla Sektora Publicznego i Społecznego", description: "Budujemy strony, które pomagają NGO i instytucjom pozyskiwać dofinansowanie. Premium technologia, wsparcie 24/7, panel admina lepszy niż WordPress.", url: "https://webild.dev", siteName: "Webild", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ActKwLAi81w6xx1znfgm5X6yeE/a-modern-clean-software-dashboard-interf-1772903717318-f350aa2b.png", alt: "Webild - Premium Web Development" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Webild | Strony Premium dla NGO i Instytucji", description: "Nowoczesne strony, które pomagają pozyskiwać dotacje UE. React, Next.js, 24/7 wsparcie techniczne.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ActKwLAi81w6xx1znfgm5X6yeE/a-modern-clean-software-dashboard-interf-1772903717318-f350aa2b.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Webild", description: "Strony premium dla instytucji i NGO"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -