diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c9f0a46..6081a24 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1446 +1,38 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/global/Tag"; const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Proof Digital - Web Design & Development Agency", - description: "Transform your digital presence with Proof Digital. Expert web design, development, and digital strategy services for growing businesses.", - keywords: "web design, web development, digital agency, digital strategy, custom websites", - metadataBase: new URL("https://proofdigital.com"), - alternates: { - canonical: "https://proofdigital.com", - }, - openGraph: { - title: "Proof Digital - Web Design & Development Agency", - description: "Transform your digital presence with Proof Digital. Expert web design, development, and digital strategy services for growing businesses.", - url: "https://proofdigital.com", - siteName: "Proof Digital", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgZA6IQcr4Zlleho9QA1StWJGf/a-modern-digital-agency-workspace-showin-1773016088900-3564f504.png", - alt: "Proof Digital - Web Design & Development", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Proof Digital - Web Design & Development Agency", - description: "Transform your digital presence with Proof Digital. Expert web design, development, and digital strategy services.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgZA6IQcr4Zlleho9QA1StWJGf/a-modern-digital-agency-workspace-showin-1773016088900-3564f504.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Proof Digital - Web Design & Development Agency", description: "Expert digital solutions for your business. Web design, development, and strategic guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +