diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae77a88..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } 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 halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "JB Digital - Digital Agency & Web Solutions", - description: "Transform your digital presence with JB Digital. Expert web design, app development, and digital marketing solutions for growing businesses.", - keywords: "digital agency, web design, app development, digital marketing, branding, web development", - metadataBase: new URL("https://jbdigital.com"), - alternates: { - canonical: "https://jbdigital.com", - }, - openGraph: { - title: "JB Digital - Digital Agency & Web Solutions", - description: "Transform your digital presence with innovative digital solutions. Web design, app development, and marketing expertise.", - url: "https://jbdigital.com", - siteName: "JB Digital", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXznXm8Lo2SaW1hAuyt8VHTusE/a-modern-sleek-digital-dashboard-interfa-1772754205870-3185b4a7.png", - alt: "JB Digital - Digital Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "JB Digital - Digital Agency & Web Solutions", - description: "Transform your digital presence with innovative digital solutions. Web design, app development, and marketing expertise.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXznXm8Lo2SaW1hAuyt8VHTusE/a-modern-sleek-digital-dashboard-interfa-1772754205870-3185b4a7.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +