Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 19c276fecd | |||
| b0e4114aaa | |||
| 6fc848caf1 | |||
| 9d54dad500 |
@@ -1,59 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sir Kong Media: The Best Media House in Uganda - Branding, Printing & Video Editing", description: "Uganda's premier creative media house offering comprehensive branding, DTF printing, embroidery, and video editing services. Transform your vision into reality with Sir Kong Media.", keywords: "media house Uganda, branding, printing, video editing, graphic design, DTF printing, embroidery, logo design, content creation, Kampala", metadataBase: new URL("https://sirkongmedia.com"),
|
title: "Sir Kong Media - The Best Media House in Uganda", description: "Creative branding, professional printing, and cinematic video production. Transform your brand vision into reality."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://sirkongmedia.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Sir Kong Media - The Best Media House in Uganda", description: "From concept to creation: complete branding, printing, and digital media services.", url: "https://sirkongmedia.com", siteName: "Sir Kong Media", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/filmmaker-refining-movie-footage_482257-121322.jpg", alt: "Sir Kong Media Creative Services"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Sir Kong Media - Uganda's Premier Creative Media House", description: "Branding, Printing & Video Editing Excellence", images: ["http://img.b2bpic.net/free-photo/filmmaker-refining-movie-footage_482257-121322.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${publicSans.variable} ${inter.variable} ${halant.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1421,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ export default function SirKongMediaPage() {
|
|||||||
<SplitAbout
|
<SplitAbout
|
||||||
tag="Production Workshop"
|
tag="Production Workshop"
|
||||||
title="Printing & Physical Excellence"
|
title="Printing & Physical Excellence"
|
||||||
description="Our production muscle brings digital designs to tangible reality. We specialize in high-quality printing, embroidery, and branded merchandise that elevates your brand presence."
|
description="Our production muscle brings digital designs to tangible reality. We specialize in high-quality printing, embroidery, and branded merchandise that elevates your brand presence. (Completed in 3-14 business days)"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user