Update src/app/page.tsx

This commit is contained in:
2026-05-11 13:49:47 +00:00
parent 4cb68c7cc7
commit 0ddb3c21f7

View File

@@ -29,26 +29,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Courses",
id: "/courses",
},
{
name: "Services",
id: "/services",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Courses", id: "/courses" },
{ name: "Services", id: "/services" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
]}
brandName="R-Dex Group"
/>
@@ -59,37 +44,16 @@ export default function LandingPage() {
title="Securing the Future of Digital Infrastructure"
description="R-Dex Group Of Industry provides advanced cybersecurity training, defense, and consulting services for a hyper-connected world."
buttons={[
{
text: "Start Learning",
href: "/courses",
},
{
text: "Contact Us",
href: "/contact",
},
{ text: "Start Learning", href: "/courses" },
{ text: "Contact Us", href: "/contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/cyber-security-experts-working-with-tech-devices-neon-lights_23-2151645614.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/cyber-security-experts-working-with-tech-devices-neon-lights_23-2151645614.jpg"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/laptop-screen-with-technical-information_53876-101869.jpg",
alt: "Cybersecurity Expert A",
},
{
src: "http://img.b2bpic.net/free-photo/cyber-security-expert-working-with-technology-neon-lights_23-2151645669.jpg",
alt: "Cybersecurity Expert B",
},
{
src: "http://img.b2bpic.net/free-photo/cyber-security-experts-working-with-tech-devices-neon-lights_23-2151645638.jpg",
alt: "Cybersecurity Expert C",
},
{
src: "http://img.b2bpic.net/free-photo/cyber-security-expert-working-with-technology-neon-lights_23-2151645577.jpg",
alt: "Cybersecurity Expert D",
},
{
src: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232845.jpg",
alt: "Cybersecurity Expert E",
},
{ src: "http://img.b2bpic.net/free-photo/laptop-screen-with-technical-information_53876-101869.jpg", alt: "Cybersecurity Expert A" },
{ src: "http://img.b2bpic.net/free-photo/cyber-security-expert-working-with-technology-neon-lights_23-2151645669.jpg", alt: "Cybersecurity Expert B" },
{ src: "http://img.b2bpic.net/free-photo/cyber-security-experts-working-with-tech-devices-neon-lights_23-2151645638.jpg", alt: "Cybersecurity Expert C" },
{ src: "http://img.b2bpic.net/free-photo/cyber-security-expert-working-with-technology-neon-lights_23-2151645577.jpg", alt: "Cybersecurity Expert D" },
{ src: "http://img.b2bpic.net/free-photo/beautiful-mature-woman-having-fun-time_23-2149232845.jpg", alt: "Cybersecurity Expert E" },
]}
avatarText="Join our 15,000+ elite graduates"
/>
@@ -100,21 +64,9 @@ export default function LandingPage() {
useInvertedBackground={true}
title="Defending Digital Frontiers"
metrics={[
{
label: "Certified Students",
value: "15,000+",
icon: GraduationCap,
},
{
label: "Cyber Defense Projects",
value: "200+",
icon: ShieldCheck,
},
{
label: "Global Industry Partners",
value: "50+",
icon: Building2,
},
{ label: "Certified Students", value: "15,000+", icon: GraduationCap },
{ label: "Cyber Defense Projects", value: "200+", icon: ShieldCheck },
{ label: "Global Industry Partners", value: "50+", icon: Building2 },
]}
metricsAnimation="slide-up"
/>
@@ -124,15 +76,7 @@ export default function LandingPage() {
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
names={[
"Microsoft",
"Google",
"CrowdStrike",
"IBM",
"Intel",
"Cisco",
"Palo Alto Networks",
]}
names={["Microsoft", "Google", "CrowdStrike", "IBM", "Intel", "Cisco", "Palo Alto Networks"]}
title="Trusted by Leading Industry Players"
description="Collaborating with global enterprises and government sectors to build secure digital infrastructures."
/>
@@ -140,6 +84,8 @@ export default function LandingPage() {
<div id="product" data-section="product">
<ProductCardThree
title="Cyber Security Toolkits"
description="Professional grade tools for your security needs."
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
@@ -148,7 +94,7 @@ export default function LandingPage() {
</div>
<div id="ecommerce" data-section="ecommerce">
<ProductCatalog />
<ProductCatalog layout="page" />
</div>
<div id="footer" data-section="footer">
@@ -156,29 +102,15 @@ export default function LandingPage() {
logoText="R-Dex Group"
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services",
items: [
{
label: "Cyber Solutions",
href: "/services",
},
{
label: "Training",
href: "/courses",
},
title: "Services", items: [
{ label: "Cyber Solutions", href: "/services" },
{ label: "Training", href: "/courses" },
],
},
]}