diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 964c599..1c0f3ef 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,42 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Inter_Tight } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Web Design Agency | Clean Modern Websites", description: "Award-winning web design agency creating beautiful, functional websites that convert. Portfolio of 150+ successful projects for startups and enterprises.", keywords: "web design agency, minimalist website design, web development, portfolio, responsive websites", metadataBase: new URL("https://webild.com"), - alternates: { - canonical: "https://webild.com"}, - openGraph: { - title: "Websites that Work as Beautifully as They Look | Webild", description: "Professional web design agency specializing in clean, modern websites that drive conversions. See our portfolio of successful projects.", url: "https://webild.com", siteName: "Webild", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-psd/smiley-woman-wearing-sunglasses-landing-page-template_23-2148782097.jpg", alt: "Webild Web Design Portfolio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Web Design Agency | Webild", description: "Clean, modern websites that convert visitors into customers. 150+ successful projects.", images: ["http://img.b2bpic.net/free-psd/smiley-woman-wearing-sunglasses-landing-page-template_23-2148782097.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Webild - Web Design Agency | Jordan", description: + "Professional web design and development agency in Jordan. We create beautiful, modern websites that convert visitors into customers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +