diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae9a613..f95242b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1439 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; -import { Halant } 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 halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Webify Greece - Professional Web Design for Greek Businesses", - description: "Transform your business with professional web design. Webify Greece creates stunning, high-converting websites for businesses across Greece. 150+ successful projects.", - keywords: "web design Greece, website development, professional web design, Greek business websites, web design agency", - metadataBase: new URL("https://webifygreece.com"), - alternates: { - canonical: "https://webifygreece.com", - }, - openGraph: { - title: "Webify Greece - Professional Web Design", - description: "Create a stunning website for your Greek business. Expert web design, development, and SEO solutions.", - url: "https://webifygreece.com", - siteName: "Webify Greece", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-vector/smart-home-management_23-2148619625.jpg", - alt: "Webify Greece - Professional Web Design Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Webify Greece - Professional Web Design", - description: "Transform your Greek business with stunning, high-converting websites.", - images: ["http://img.b2bpic.net/free-vector/smart-home-management_23-2148619625.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webify Greece - Professional Web Design & Development", description: "Webify Greece creates stunning, high-converting websites for Greek businesses. Professional web design and development services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -