qudoco-fe/app/layout.tsx

61 lines
1.3 KiB
TypeScript
Raw Normal View History

2026-02-17 09:05:22 +00:00
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
const siteDescription =
"Qudoco — portal konten dan layanan untuk mengelola website, berita, serta aset media dengan alur kerja yang terstruktur.";
2026-02-17 09:05:22 +00:00
export const metadata: Metadata = {
metadataBase: new URL("https://qudo.id"),
title: {
default: "Qudoco",
template: "%s | Qudoco",
},
description: siteDescription,
applicationName: "Qudoco",
keywords: ["Qudoco", "portal konten", "CMS", "berita", "layanan"],
authors: [{ name: "Qudoco" }],
openGraph: {
type: "website",
locale: "id_ID",
siteName: "Qudoco",
title: "Qudoco",
description: siteDescription,
},
twitter: {
card: "summary_large_image",
title: "Qudoco",
description: siteDescription,
},
robots: {
index: true,
follow: true,
},
2026-02-17 09:05:22 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="id">
2026-02-17 09:05:22 +00:00
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}