diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e6d00d7..578852b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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({ {children} @@ -1423,4 +1420,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 166cfe7..f718dbe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,16 +15,16 @@ import { AlertCircle, Eye, Rocket, Activity, Lock, Shield, Target, TrendingUp, U export default function LandingPage() { return (