|
|
|
|
@@ -1,68 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope, DM_Sans } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "NETRIX - Platform AI Pembelajaran Teknik Komputer & Jaringan Indonesia",
|
|
|
|
|
description: "NETRIX adalah platform pembelajaran interaktif berbasis AI untuk siswa TKJ SMK. Dengan simulator virtual, AI tutor 24/7, dan dashboard guru komprehensif, kami membantu siswa menguasai networking dengan mudah. Tersedia gratis dan premium untuk semua sekolah Indonesia.",
|
|
|
|
|
keywords: "TKJ, pembelajaran jaringan, simulator networking, AI tutor, pendidikan teknik, SMK, lab virtual, Cisco CCNA, MikroTik",
|
|
|
|
|
metadataBase: new URL("https://netrix.id"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://netrix.id",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "NETRIX - Revolusi Pembelajaran Teknik Komputer & Jaringan",
|
|
|
|
|
description: "Platform AI terpadu untuk pembelajaran TKJ: materi terstruktur, simulator virtual, AI tutor, dan persiapan sertifikasi. Gratis untuk semua sekolah Indonesia.",
|
|
|
|
|
url: "https://netrix.id",
|
|
|
|
|
siteName: "NETRIX",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARChGFCfu26pJ7abvgtraIFthB/a-modern-ai-powered-educational-dashboar-1772610788363-1e7e7d0d.png",
|
|
|
|
|
alt: "NETRIX Platform Dashboard",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "NETRIX - Platform AI Pembelajaran TKJ",
|
|
|
|
|
description: "Belajar Teknik Jaringan dengan AI, Simulator, dan Komunitas. Gratis dan Premium tersedia.",
|
|
|
|
|
images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARChGFCfu26pJ7abvgtraIFthB/a-modern-ai-powered-educational-dashboar-1772610788363-1e7e7d0d.png",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "NETRIX - Platform AI untuk Pembelajaran Teknik Komputer & Jaringan", description: "Platform pembelajaran interaktif berbasis AI untuk siswa SMK jurusan TKJ dengan modul terstruktur, AI tutor 24/7, simulator lab, dan persiapan sertifikasi."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1430,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|