10 Commits

Author SHA1 Message Date
2bfa191bdb Update src/app/work/page.tsx 2026-03-03 07:35:34 +00:00
095fbbbd6f Update src/app/services/page.tsx 2026-03-03 07:35:34 +00:00
f6c5ab0b98 Update src/app/process/page.tsx 2026-03-03 07:35:33 +00:00
7522196452 Update src/app/pricing/page.tsx 2026-03-03 07:35:32 +00:00
3f04e0a364 Update src/app/page.tsx 2026-03-03 07:35:32 +00:00
be937c41cf Update src/app/layout.tsx 2026-03-03 07:35:31 +00:00
58a27339c5 Update src/app/contact/page.tsx 2026-03-03 07:35:30 +00:00
35ddf8151d Update src/app/about/page.tsx 2026-03-03 07:35:30 +00:00
a5f74774d1 Merge version_3 into main
Merge version_3 into main
2026-03-03 07:28:30 +00:00
e3e3650010 Merge version_3 into main
Merge version_3 into main
2026-03-03 07:26:23 +00:00
8 changed files with 16 additions and 39 deletions

View File

@@ -142,4 +142,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -118,4 +118,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${archivo.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -177,4 +177,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -133,4 +133,4 @@ export default function PricingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -123,4 +123,4 @@ export default function ProcessPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -127,4 +127,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -118,4 +118,4 @@ export default function WorkPage() {
</div>
</ThemeProvider>
);
}
}