Update src/app/academy/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AcademyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Dashboard",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Academy",
|
||||
id: "/academy",
|
||||
},
|
||||
{
|
||||
name: "Commands",
|
||||
id: "/commands",
|
||||
},
|
||||
{
|
||||
name: "News",
|
||||
id: "/news",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{ name: "Dashboard", id: "/" },
|
||||
{ name: "Academy", id: "/academy" },
|
||||
{ name: "Commands", id: "/commands" },
|
||||
{ name: "News", id: "/news" },
|
||||
{ name: "About", id: "/about" }
|
||||
]}
|
||||
brandName="MHI Cyber Shield"
|
||||
button={{ text: "Contact", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -57,42 +43,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ethical Hacking 101",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Network Security",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Linux for Hackers",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Web Pentesting",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/circular-layers-dark-background-price-tag_23-2148629498.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Cryptography",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-3d-rendering-modern-tech-device_187299-46717.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "OSINT Basics",
|
||||
price: "Active",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Ethical Hacking 101", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg" },
|
||||
{ id: "2", name: "Network Security", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg" },
|
||||
{ id: "3", name: "Linux for Hackers", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg" },
|
||||
{ id: "4", name: "Web Pentesting", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/circular-layers-dark-background-price-tag_23-2148629498.jpg" },
|
||||
{ id: "5", name: "Cryptography", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-3d-rendering-modern-tech-device_187299-46717.jpg" },
|
||||
{ id: "6", name: "OSINT Basics", price: "Active", imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg" }
|
||||
]}
|
||||
title="Cyber Academy Modules"
|
||||
description="Select a module to begin your training."
|
||||
@@ -102,9 +58,7 @@ export default function LandingPage() {
|
||||
<div id="academy-contact" data-section="academy-contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Support"
|
||||
title="Need Help With Modules?"
|
||||
description="Connect with our research team."
|
||||
@@ -114,32 +68,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Platform",
|
||||
items: [
|
||||
{
|
||||
label: "Academy",
|
||||
href: "/academy",
|
||||
},
|
||||
{
|
||||
label: "Commands",
|
||||
href: "/commands",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "News",
|
||||
href: "/news",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Platform", items: [{ label: "Academy", href: "/academy" }, { label: "Commands", href: "/commands" }] },
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "News", href: "/news" }] }
|
||||
]}
|
||||
logoText="MHI Cyber Shield"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user