Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-03-08 16:12:11 +00:00

View File

@@ -1,13 +1,12 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/providers/service/ServiceWrapper";
import Tag from "@/components/tag/Tag";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
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."};
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,
@@ -16,11 +15,8 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${inter.variable} antialiased`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<body className={`${inter.className} antialiased`}>
{children}
<script
async
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"