Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
</ServiceWrapper>
|
||||
<script
|
||||
async
|
||||
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
|
||||
></script>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1393,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ export default function CyberSecureLanding() {
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="mediumLarge"
|
||||
background="floatingGradient"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -31,14 +31,14 @@ export default function CyberSecureLanding() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="CyberSecure"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Topics", id: "features" },
|
||||
{ name: "Resources", id: "blog" },
|
||||
{ name: "FAQ", id: "faq" }
|
||||
]}
|
||||
button={{
|
||||
text: "Get Started", href: "#contact"
|
||||
text: "Get Started", href: "contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
@@ -50,7 +50,7 @@ export default function CyberSecureLanding() {
|
||||
tag="Interview Prep"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "floatingGradient" }}
|
||||
background={{ variant: "glowing-orb" }}
|
||||
leftCarouselItems={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfZgaq2UmvnPHtEJsJt6DMnbzF/a-modern-cybersecurity-analytics-dashboa-1772985806852-ceb9b5df.png", imageAlt: "Security analysis dashboard"
|
||||
@@ -80,8 +80,8 @@ export default function CyberSecureLanding() {
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Learning", href: "#features" },
|
||||
{ text: "View Resources", href: "#blog" }
|
||||
{ text: "Start Learning", href: "features" },
|
||||
{ text: "View Resources", href: "blog" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -280,7 +280,7 @@ export default function CyberSecureLanding() {
|
||||
description="Join our community of cybersecurity professionals and receive weekly interview insights, trending topics, and exclusive resources delivered to your inbox."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "floatingGradient" }}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AfZgaq2UmvnPHtEJsJt6DMnbzF/a-modern-newsletter-subscription-interfa-1772985806011-e2b7b9e6.png"
|
||||
imageAlt="Newsletter subscription interface"
|
||||
@@ -297,24 +297,24 @@ export default function CyberSecureLanding() {
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Interview Prep", href: "#features" },
|
||||
{ label: "Resources", href: "#blog" },
|
||||
{ label: "Topics", href: "#features" },
|
||||
{ label: "Testimonials", href: "#testimonials" }
|
||||
{ label: "Interview Prep", href: "features" },
|
||||
{ label: "Resources", href: "blog" },
|
||||
{ label: "Topics", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Blog", href: "#blog" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "FAQ", href: "#faq" }
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Blog", href: "blog" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "FAQ", href: "faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Study Guides", href: "#" },
|
||||
{ label: "Interview Tips", href: "#blog" },
|
||||
{ label: "Interview Tips", href: "blog" },
|
||||
{ label: "Certifications", href: "#" },
|
||||
{ label: "Glossary", href: "#" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user