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}
-
+
+
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index bd42a0d..cfa96fc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
@@ -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" }
]}
/>
@@ -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: "#" }
]