diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a47c26c..d788f7a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,45 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Manrope } from "next/font/google";
+import { Outfit } 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 manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
+const outfit = Outfit({
+ variable: "--font-outfit", subsets: ["latin"],
+ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "CreatorsMize - Creative Agency & Digital Growth", description: "CreatorsMize is a creative agency specializing in social media management, content creation, video production, and digital growth strategies. Elevate your brand with our passionate, results-driven team.", keywords: "creative agency, social media management, content creation, video production, digital marketing, brand building, influencer marketing, digital growth", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "CreatorsMize - Creative Agency & Digital Growth", description: "Elevate your brand with strategic creativity and cutting-edge digital solutions.", type: "website", siteName: "CreatorsMize"},
- twitter: {
- card: "summary_large_image", title: "CreatorsMize - Creative Agency & Digital Growth", description: "Strategic creativity meets execution. Transform your brand with CreatorsMize."},
-};
+ title: "CreatorsMize - Creative Digital Solutions", description: "CreatorsMize is a creative agency specializing in digital solutions, content creation, and brand building. Transforming visions into impactful digital experiences."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-