diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f12da86..93b5c02 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,44 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - 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: "Vice Web Co. - Web Design & Development Agency", - description: "Transform your online presence with Vice Web Co. We create stunning websites and digital experiences that drive growth. 200+ successful projects delivered.", - keywords: "web design, web development, digital agency, website design, branding, UX design, responsive websites", - metadataBase: new URL("https://viceweb.co"), - alternates: { - canonical: "https://viceweb.co", - }, - openGraph: { - title: "Vice Web Co. - Web Design & Development", - description: "Creating beautiful, high-performance websites that drive real business results.", - url: "https://viceweb.co", - siteName: "Vice Web Co.", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aijx2OAEUraXNFCRsFXoYS5px5/a-modern-minimalist-web-design-agency-da-1773082594236-efa2e284.png", - alt: "Vice Web Co. - Web Design Agency", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Vice Web Co. - Web Design & Development", - description: "Transform your vision into stunning digital experiences.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aijx2OAEUraXNFCRsFXoYS5px5/a-modern-minimalist-web-design-agency-da-1773082594236-efa2e284.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Vice Web Co. | Web Design & Development Agency", description: "Vice Web Co. creates stunning, high-performance websites that drive growth. Comprehensive web solutions from design to development."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +