diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7bec5b4..dd9b5ab 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,44 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Digioners | Digital Marketing Agency & Design Solutions", description: "Transform your brand with Digioners. Expert digital marketing agency offering Web & App Design, UI/UX, Branding, and AI Automation solutions for modern businesses.", keywords: "digital marketing, web design, app design, UI/UX design, branding, logo design, online advertising, AI automation, marketing agency", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Digioners | Digital Marketing & Design Excellence", description: "Transform your digital vision with cutting-edge design and marketing solutions. Web & App Design, UI/UX, Branding, and AI Automation.", siteName: "Digioners", type: "website"},
- twitter: {
- card: "summary_large_image", title: "Digioners | Digital Marketing Agency", description: "Expert digital marketing and design services. We transform brands with innovation and creativity."},
-};
+ title: "Digioners - Digital Marketing & Design Solutions", description: "Digioners crafts cutting-edge digital experiences through Web & App Design, UI/UX, Branding, and AI-powered marketing solutions."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-