Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5911b1027e | |||
| 55e1ba6ae5 | |||
| 5cde36e63e | |||
| 2bfa191bdb | |||
| 095fbbbd6f | |||
| f6c5ab0b98 | |||
| 7522196452 | |||
| 3f04e0a364 | |||
| be937c41cf | |||
| 58a27339c5 | |||
| 35ddf8151d | |||
| a5f74774d1 | |||
| e3e3650010 |
@@ -142,4 +142,4 @@ export default function AboutPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -118,4 +118,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,44 +1,23 @@
|
||||
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 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
||||
import AboutMetric from "@/components/sections/about/AboutMetric";
|
||||
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
|
||||
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
|
||||
@@ -66,28 +65,6 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
title="Motion Design That Moves Markets"
|
||||
description="We help startups and enterprises establish emotional connections between products and customers through creative animated explainers that drive engagement and conversion"
|
||||
background={{ variant: "plain" }}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", alt: "Avatar 1"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", alt: "Avatar 2"
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by 1000+ users"
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "/contact" },
|
||||
{ text: "View Our Work", href: "/work" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="We believe motion design is the future of brand storytelling. At Afrozarchives, we combine artistic vision with strategic thinking to create animated explainers that elevate your brand above the noise."
|
||||
@@ -177,4 +154,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -133,4 +133,4 @@ export default function PricingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,4 +123,4 @@ export default function ProcessPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -127,4 +127,4 @@ export default function ServicesPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -118,4 +118,4 @@ export default function WorkPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user