diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 40dd358..9fd18aa 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -142,4 +142,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6712414..a37db59 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -118,4 +118,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c82d8ba..786e89d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,22 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Motion Design for Startups & Enterprise | Afrozarchives", description: "Animated explainer videos and motion design that drive engagement and conversion. We help startups and enterprises establish emotional connections through creative storytelling.", keywords: "motion design, animated explainers, video animation, product animation, explainer videos, brand storytelling, SaaS animation", metadataBase: new URL("https://afrozarchives.com"), - alternates: { - canonical: "https://afrozarchives.com"}, - openGraph: { - title: "Motion Design That Moves Markets | Afrozarchives", description: "Creative animated explainers and motion design for startups and enterprise brands.", siteName: "Afrozarchives", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/technician-employs-ai-chatbot-pc-monitor-executing-programming-code_482257-120774.jpg", alt: "Afrozarchives Motion Design Studio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Motion Design That Moves Markets | Afrozarchives", description: "Creative animated explainers and motion design for startups and enterprise brands.", images: ["http://img.b2bpic.net/free-photo/technician-employs-ai-chatbot-pc-monitor-executing-programming-code_482257-120774.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Afrozarchives - Motion Design Studio", description: "Creative animated explainers and motion design that drive engagement and conversion"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}