Update src/app/layout.tsx

This commit is contained in:
2026-03-03 14:17:55 +00:00
parent 54859373ff
commit b92f2a7b49

View File

@@ -1,18 +1,12 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { Halant } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
@@ -22,21 +16,24 @@ const inter = Inter({
export const metadata: Metadata = {
title: "Dragonfly Ops - Practical Cybersecurity Expertise", description: "100% hands-on cybersecurity operators. Tactical incident response, real-world expertise, proven results. For VCs, founders, and security-critical companies.", keywords: "cybersecurity, incident response, tactical security, hands-on operators, security expertise", metadataBase: new URL("https://dragonflyop.com"),
alternates: {
canonical: "https://dragonflyop.com"},
canonical: "https://dragonflyop.com"
},
openGraph: {
title: "Dragonfly Ops - Practical Cybersecurity Expertise", description: "Tactical incident response from battle-tested operators. 24/7 security operations for VCs and founders.", type: "website", siteName: "Dragonfly Ops", url: "https://dragonflyop.com", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARCSPnFH48UWw1pXuy7BCmuGdR/a-diverse-team-of-cybersecurity-professi-1772546436401-6e5bd574.png", alt: "Dragonfly Ops tactical team"},
],
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARCSPnFH48UWw1pXuy7BCmuGdR/a-diverse-team-of-cybersecurity-professi-1772546436401-6e5bd574.png", alt: "Dragonfly Ops tactical team"
}
]
},
twitter: {
card: "summary_large_image", title: "Dragonfly Ops - Practical Cybersecurity Expertise", description: "100% hands-on operators. Real expertise. Real results.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARCSPnFH48UWw1pXuy7BCmuGdR/a-diverse-team-of-cybersecurity-professi-1772546436401-6e5bd574.png"],
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARCSPnFH48UWw1pXuy7BCmuGdR/a-diverse-team-of-cybersecurity-professi-1772546436401-6e5bd574.png"
]
},
robots: {
index: true,
follow: true,
},
follow: true
}
};
export default function RootLayout({
@@ -48,7 +45,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -1423,4 +1420,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}