From d5cd039d66f25d236b5a2e3ee1ab3daac710cd0d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:11:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++++---------------------------------- 1 file changed, 14 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9c7b099..45524c9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/service/ServiceWrapper"; +import Tag from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Cybersecurity Interview Prep | Master Your Technical Interviews", description: "Comprehensive cybersecurity interview preparation guide. Learn from experts, master real-world scenarios, and ace your security job interviews with confidence.", keywords: "cybersecurity interview, security interview prep, cybersecurity jobs, interview questions, security certifications", metadataBase: new URL("https://cybersecure.com"), - alternates: { - canonical: "https://cybersecure.com" - }, - openGraph: { - title: "Master Cybersecurity Interviews", description: "Get expert-led interview preparation for cybersecurity roles. Real-world scenarios, interview tips, and resources to launch your security career.", type: "website", siteName: "CyberSecure", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfZgaq2UmvnPHtEJsJt6DMnbzF/a-modern-cybersecurity-analytics-dashboa-1772985806852-ceb9b5df.png", alt: "Cybersecurity Interview Preparation" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Master Cybersecurity Interviews", description: "Expert interview prep for security professionals. Learn strategies, ace technical questions, and land your dream role.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfZgaq2UmvnPHtEJsJt6DMnbzF/a-modern-cybersecurity-analytics-dashboa-1772985806852-ceb9b5df.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "CyberSecure - Master Cybersecurity Interviews", description: "Comprehensive preparation guide for landing your dream cybersecurity role. Learn from industry experts, explore real-world scenarios, and build the expertise employers are looking for."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + + +