Merge version_2 into main #4
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/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 mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "MOSI.MEDIA - Premium Media Production & Creative Agency", description: "Full-service media agency specializing in video production, content strategy, and brand design. We create compelling visual stories that drive results.", keywords: "media agency, video production, content strategy, brand design, creative services", openGraph: {
|
||||
title: "MOSI.MEDIA - Creative Media Solutions", description: "Transform your brand with cutting-edge media production and strategic content creation.", type: "website", siteName: "MOSI.MEDIA"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "MOSI.MEDIA - Premium Media Production", description: "Full-service creative media agency"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "MOSI.MEDIA - Creative Media Production & Strategy", description: "Professional media production, content strategy, and brand design services. We create powerful visual stories that connect brands with audiences."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -67,15 +67,21 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
tag: "Production", title: "Video Production", subtitle: "Cinematic storytelling that captivates", description: "From concept to final cut, we produce high-quality videos that capture attention and drive engagement. Our in-house production team handles everything from commercials to documentaries with professional equipment and creative expertise.", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-businesswoman-working-computer-office-place-your-text-ideal-blog-flat-lay-white-background_639032-1378.jpg?_wi=1", imageAlt: "Video production quality cinematography"
|
||||
tag: "Production", title: "Video Production", subtitle: "Cinematic storytelling that captivates", description: "From concept to final cut, we produce high-quality videos that capture attention and drive engagement. Our in-house production team handles everything from commercials to documentaries with professional equipment and creative expertise.", imageSrc: "http://img.b2bpic.net/free-photo/overhead-view-businesswoman-working-computer-office-place-your-text-ideal-blog-flat-lay-white-background_639032-1378.jpg?_wi=1", imageAlt: "Video production quality cinematography", buttons: [
|
||||
{ text: "Explore This Service", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
tag: "Strategy", title: "Content Strategy", subtitle: "Data-driven content that converts", description: "We develop tailored content strategies that align with your brand goals and audience insights. Our approach combines creative thinking with analytics to ensure every piece of content delivers measurable results.", imageSrc: "http://img.b2bpic.net/free-photo/hands-male-business-executive-using-laptop_1170-2940.jpg?_wi=1", imageAlt: "branding design agency portfolio"
|
||||
tag: "Strategy", title: "Content Strategy", subtitle: "Data-driven content that converts", description: "We develop tailored content strategies that align with your brand goals and audience insights. Our approach combines creative thinking with analytics to ensure every piece of content delivers measurable results.", imageSrc: "http://img.b2bpic.net/free-photo/hands-male-business-executive-using-laptop_1170-2940.jpg?_wi=1", imageAlt: "branding design agency portfolio", buttons: [
|
||||
{ text: "Explore This Service", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
tag: "Design", title: "Brand Design", subtitle: "Visual identity that stands out", description: "Our design team creates distinctive visual identities that reflect your brand's values and resonate with your target market. From logos to complete brand systems, we craft designs that leave lasting impressions.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-desk-concept-with-booklet_23-2147731383.jpg?_wi=1", imageAlt: "professional video production case study"
|
||||
tag: "Design", title: "Brand Design", subtitle: "Visual identity that stands out", description: "Our design team creates distinctive visual identities that reflect your brand's values and resonate with your target market. From logos to complete brand systems, we craft designs that leave lasting impressions.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-desk-concept-with-booklet_23-2147731383.jpg?_wi=1", imageAlt: "professional video production case study", buttons: [
|
||||
{ text: "Explore This Service", href: "#contact" }
|
||||
]
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user