From 7a41246cc6e0f89f6e209fe39f356894923e7423 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:13:24 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 84 ++++++++---------------------------------- 1 file changed, 16 insertions(+), 68 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b3d5a9f..3198f24 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -57,27 +43,15 @@ export default function LandingPage() { useInvertedBackground={false} groups={[ { - id: "core", - groupTitle: "MHI Leadership", - members: [ + id: "core", groupTitle: "MHI Leadership", members: [ { - id: "m1", - title: "Arsh Patel", - subtitle: "Founder & Lead Researcher", - detail: "Mastermind Hackers India visionary.", - imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg?_wi=1", + id: "m1", title: "Arsh Patel", subtitle: "Founder & Lead Researcher", detail: "Mastermind Hackers India visionary.", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg" }, { - id: "m2", - title: "Security Lead", - subtitle: "Operations", - detail: "Infrastructure and Security.", - imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg?_wi=2", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/top-view-laptop-table-glowing-screen-dark_169016-53642.jpg?_wi=2", - imageAlt: "cyberpunk dark tech background", - }, + id: "m2", title: "Security Lead", subtitle: "Operations", detail: "Infrastructure and Security.", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg" + } + ] + } ]} title="Meet MHI Team" description="Ethical hackers committed to safety." @@ -87,9 +61,7 @@ export default function LandingPage() {
-- 2.49.1 From fbe8f4da35582c1f9f3d507d7d9ffe1c45c0901d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:13:25 +0000 Subject: [PATCH 2/5] Update src/app/academy/page.tsx --- src/app/academy/page.tsx | 102 ++++++--------------------------------- 1 file changed, 16 insertions(+), 86 deletions(-) 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() {
-- 2.49.1 From 22311489b1cdaf1874b2b7a4471c7670f86fa354 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 02:13:25 +0000 Subject: [PATCH 3/5] Update src/app/commands/page.tsx --- src/app/commands/page.tsx | 116 ++++++-------------------------------- 1 file changed, 18 insertions(+), 98 deletions(-) diff --git a/src/app/commands/page.tsx b/src/app/commands/page.tsx index c2ae5a0..a9dba71 100644 --- a/src/app/commands/page.tsx +++ b/src/app/commands/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 CommandsPage() { return (
@@ -57,42 +43,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "c1", - name: "Nmap Scan", - price: "nmap -sV target", - imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg?_wi=2", - }, - { - id: "c2", - name: "Metasploit Start", - price: "msfconsole", - imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg?_wi=3", - }, - { - id: "c3", - name: "Linux Update", - price: "sudo apt update", - imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg?_wi=2", - }, - { - id: "c4", - name: "Find Files", - price: "find / -name", - imageSrc: "http://img.b2bpic.net/free-photo/circular-layers-dark-background-price-tag_23-2148629498.jpg?_wi=2", - }, - { - id: "c5", - name: "Process List", - price: "ps aux | grep", - imageSrc: "http://img.b2bpic.net/free-photo/minimalist-3d-rendering-modern-tech-device_187299-46717.jpg?_wi=2", - }, - { - id: "c6", - name: "Netstat", - price: "netstat -tulpn", - imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg?_wi=4", - }, + { id: "c1", name: "Nmap Scan", price: "nmap -sV target", imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg" }, + { id: "c2", name: "Metasploit Start", price: "msfconsole", imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg" }, + { id: "c3", name: "Linux Update", price: "sudo apt update", imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg" }, + { id: "c4", name: "Find Files", price: "find / -name", imageSrc: "http://img.b2bpic.net/free-photo/circular-layers-dark-background-price-tag_23-2148629498.jpg" }, + { id: "c5", name: "Process List", price: "ps aux | grep", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-3d-rendering-modern-tech-device_187299-46717.jpg" }, + { id: "c6", name: "Netstat", price: "netstat -tulpn", imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg" } ]} title="Command Center" description="Copy-to-clipboard terminal commands." @@ -104,21 +60,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "f1", - title: "Permission Denied?", - content: "Use sudo for root access.", - }, - { - id: "f2", - title: "Not Found?", - content: "Install the required package.", - }, - { - id: "f3", - title: "Safe usage?", - content: "Only use on legal targets.", - }, + { id: "f1", title: "Permission Denied?", content: "Use sudo for root access." }, + { id: "f2", title: "Not Found?", content: "Install the required package." }, + { id: "f3", title: "Safe usage?", content: "Only use on legal targets." } ]} title="Command FAQs" description="Common terminal troubleshooting." @@ -129,32 +73,8 @@ export default function LandingPage() { @@ -58,36 +44,9 @@ export default function LandingPage() { title="Latest Threat Intelligence" description="Stay ahead of global cyber risks." blogs={[ - { - id: "b1", - category: "CRITICAL", - title: "New Ransomware Strain", - excerpt: "Full detail of the vulnerability...", - imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg?_wi=3", - authorName: "Arsh Patel", - authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", - date: "Oct 24, 2024", - }, - { - id: "b2", - category: "HIGH", - title: "Browser Zero-Day", - excerpt: "Update now for security.", - imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg?_wi=5", - authorName: "Arsh Patel", - authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", - date: "Oct 23, 2024", - }, - { - id: "b3", - category: "INFO", - title: "Phishing Trends", - excerpt: "New tactics discovered.", - imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg?_wi=3", - authorName: "Arsh Patel", - authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", - date: "Oct 22, 2024", - }, + { id: "b1", category: "CRITICAL", title: "New Ransomware Strain", excerpt: "Full detail of the vulnerability...", imageSrc: "http://img.b2bpic.net/free-photo/two-smartphones-black-background_187299-46672.jpg", authorName: "Arsh Patel", authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", date: "Oct 24, 2024" }, + { id: "b2", category: "HIGH", title: "Browser Zero-Day", excerpt: "Update now for security.", imageSrc: "http://img.b2bpic.net/free-photo/photo-metal-texture-pattern_58702-13510.jpg", authorName: "Arsh Patel", authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", date: "Oct 23, 2024" }, + { id: "b3", category: "INFO", title: "Phishing Trends", excerpt: "New tactics discovered.", imageSrc: "http://img.b2bpic.net/free-photo/mystery-box-with-gifts-concept_23-2150063184.jpg", authorName: "Arsh Patel", authorAvatar: "http://img.b2bpic.net/free-photo/cyberpunk-warrior-urban-scenery_23-2150712522.jpg", date: "Oct 22, 2024" } ]} /> @@ -96,15 +55,7 @@ export default function LandingPage() { @@ -113,32 +64,8 @@ export default function LandingPage() { @@ -194,53 +110,9 @@ export default function LandingPage() { title="Membership Levels" description="Choose your path to cyber mastery." plans={[ - { - id: "p1", - name: "Scout", - price: "Free", - features: [ - "Basic Academy Access", - "Community Forum", - ], - buttons: [ - { - text: "Start Now", - href: "/academy", - }, - ], - }, - { - id: "p2", - name: "Agent", - price: "$29/mo", - features: [ - "Full Academy", - "Command Tools", - "Daily News", - ], - buttons: [ - { - text: "Upgrade", - href: "/academy", - }, - ], - }, - { - id: "p3", - name: "Elite", - price: "$99/mo", - features: [ - "Private Mentor", - "Custom Commands", - "Priority Support", - ], - buttons: [ - { - text: "Apply Now", - href: "/contact", - }, - ], - }, + { id: "p1", name: "Scout", price: "Free", features: ["Basic Academy Access", "Community Forum"], buttons: [{ text: "Start Now", href: "/academy" }] }, + { id: "p2", name: "Agent", price: "$29/mo", features: ["Full Academy", "Command Tools", "Daily News"], buttons: [{ text: "Upgrade", href: "/academy" }] }, + { id: "p3", name: "Elite", price: "$99/mo", features: ["Private Mentor", "Custom Commands", "Priority Support"], buttons: [{ text: "Apply Now", href: "/contact" }] } ]} /> @@ -248,32 +120,8 @@ export default function LandingPage() {