diff --git a/src/app/academy/page.tsx b/src/app/academy/page.tsx index 7a6aa65..2861b6f 100644 --- a/src/app/academy/page.tsx +++ b/src/app/academy/page.tsx @@ -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 ( @@ -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() {