3 Commits

Author SHA1 Message Date
f85501b1b8 Update src/app/page.tsx 2026-03-06 16:38:14 +00:00
6e16d67fe3 Update src/app/layout.tsx 2026-03-06 16:38:14 +00:00
4ee5b8e720 Merge version_1 into main
Merge version_1 into main
2026-03-06 16:34:11 +00:00
2 changed files with 58 additions and 84 deletions

View File

@@ -1,73 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const dmSans = DM_Sans({ subsets: ["latin"] });
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "DefenceShield - Advanced Defence Technology Solutions", title: "DefenceShield - Advanced Defence Technology", description: "Enterprise-grade defence systems for national security and critical infrastructure protection."};
description: "Enterprise defence technology platform providing cutting-edge cybersecurity, threat intelligence, and strategic security solutions for critical infrastructure protection.",
keywords: "defence technology, cybersecurity, threat intelligence, critical infrastructure, security solutions, enterprise defence",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "DefenceShield - Advanced Defence Technology",
description: "Cutting-edge defence technology platform protecting critical infrastructure with enterprise-grade security solutions.",
type: "website",
siteName: "DefenceShield",
url: "https://defenceshield.io",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/a-modern-defence-technology-command-cent-1772814700761-fe3cd169.png",
alt: "DefenceShield Defence Technology Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "DefenceShield - Advanced Defence Technology",
description: "Enterprise security solutions for critical infrastructure protection",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/a-modern-defence-technology-command-cent-1772814700761-fe3cd169.png",
],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={dmSans.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1435,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -22,6 +22,7 @@ import {
Award, Award,
Linkedin, Linkedin,
Twitter, Twitter,
ArrowRight,
} from "lucide-react"; } from "lucide-react";
export default function HomePage() { export default function HomePage() {
@@ -51,7 +52,8 @@ export default function HomePage() {
brandName="DefenceShield" brandName="DefenceShield"
navItems={navItems} navItems={navItems}
button={{ button={{
text: "Request Demo", href: "/contact"}} text: "Request Demo", href: "/contact"
}}
/> />
</div> </div>
@@ -68,9 +70,11 @@ export default function HomePage() {
showDimOverlay={true} showDimOverlay={true}
buttons={[ buttons={[
{ {
text: "Request Security Assessment", href: "/contact"}, text: "Request Security Assessment", href: "/contact"
},
{ {
text: "Explore Solutions", href: "/solutions"}, text: "Explore Solutions", href: "/solutions"
},
]} ]}
buttonAnimation="blur-reveal" buttonAnimation="blur-reveal"
/> />
@@ -87,28 +91,40 @@ export default function HomePage() {
{ {
icon: Shield, icon: Shield,
title: "Advanced Cyber Defence", description: title: "Advanced Cyber Defence", description:
"Multi-layered threat prevention with zero-trust architecture and autonomous threat detection protecting critical systems 24/7."}, "Multi-layered threat prevention with zero-trust architecture and autonomous threat detection protecting critical systems 24/7."
},
{ {
icon: Radar, icon: Radar,
title: "Threat Intelligence Hub", description: title: "Threat Intelligence Hub", description:
"Real-time global threat mapping with predictive analytics and actionable intelligence for strategic security decisions."}, "Real-time global threat mapping with predictive analytics and actionable intelligence for strategic security decisions."
},
{ {
icon: CheckCircle, icon: CheckCircle,
title: "Compliance & Certification", description: title: "Compliance & Certification", description:
"Certified compliance with international defence standards, regulatory requirements, and security audit protocols."}, "Certified compliance with international defence standards, regulatory requirements, and security audit protocols."
},
{ {
icon: Zap, icon: Zap,
title: "Rapid Response Systems", description: title: "Rapid Response Systems", description:
"Incident response automation with millisecond threat neutralization and strategic operational coordination."}, "Incident response automation with millisecond threat neutralization and strategic operational coordination."
},
{ {
icon: Lock, icon: Lock,
title: "Secure Infrastructure", description: title: "Secure Infrastructure", description:
"Enterprise-grade encryption, access control, and data protection ensuring maximum operational security."}, "Enterprise-grade encryption, access control, and data protection ensuring maximum operational security."
},
{ {
icon: Brain, icon: Brain,
title: "AI-Powered Analytics", description: title: "AI-Powered Analytics", description:
"Machine learning threat detection evolving to counter emerging threats with predictive security capabilities."}, "Machine learning threat detection evolving to counter emerging threats with predictive security capabilities."
},
]} ]}
buttons={[
{
text: "Start Assessment", href: "/contact"
},
]}
buttonAnimation="blur-reveal"
/> />
</div> </div>
@@ -122,16 +138,20 @@ export default function HomePage() {
metrics={[ metrics={[
{ {
id: "1", icon: TrendingUp, id: "1", icon: TrendingUp,
title: "Threat Prevention", value: "99.99%"}, title: "Threat Prevention", value: "99.99%"
},
{ {
id: "2", icon: Clock, id: "2", icon: Clock,
title: "Response Time", value: "<100ms"}, title: "Response Time", value: "<100ms"
},
{ {
id: "3", icon: Users, id: "3", icon: Users,
title: "Active Protected", value: "500+"}, title: "Active Protected", value: "500+"
},
{ {
id: "4", icon: Award, id: "4", icon: Award,
title: "Industry Awards", value: "15+"}, title: "Industry Awards", value: "15+"
},
]} ]}
/> />
</div> </div>
@@ -143,13 +163,17 @@ export default function HomePage() {
author="General Michael Richardson, Defence Strategy Command" author="General Michael Richardson, Defence Strategy Command"
avatars={[ avatars={[
{ {
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-defence-secto-1772814700376-147a3597.png", alt: "General Michael Richardson"}, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-defence-secto-1772814700376-147a3597.png", alt: "General Michael Richardson"
},
{ {
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-government-se-1772814700202-3d3ca070.png", alt: "Dr. Sarah Martinez"}, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-government-se-1772814700202-3d3ca070.png", alt: "Dr. Sarah Martinez"
},
{ {
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-technology-di-1772814701094-70d00ddc.png", alt: "Colonel James Thompson"}, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-a-technology-di-1772814701094-70d00ddc.png", alt: "Colonel James Thompson"
},
{ {
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-an-operations-m-1772814700655-d99375b2.png", alt: "Major Elena Kowalski"}, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-portrait-of-an-operations-m-1772814700655-d99375b2.png", alt: "Major Elena Kowalski"
},
]} ]}
ratingAnimation="slide-up" ratingAnimation="slide-up"
avatarsAnimation="blur-reveal" avatarsAnimation="blur-reveal"
@@ -164,9 +188,11 @@ export default function HomePage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
names={[ names={[
"DefenceShield Partners 1", "DefenceShield Partners 2", "DefenceShield Partners 3", "DefenceShield Partners 4", "DefenceShield Partners 5", "DefenceShield Partners 6", "DefenceShield Partners 7"]} "DefenceShield Partners 1", "DefenceShield Partners 2", "DefenceShield Partners 3", "DefenceShield Partners 4", "DefenceShield Partners 5", "DefenceShield Partners 6", "DefenceShield Partners 7"
]}
logos={[ logos={[
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-defence-contractor-company--1772814700309-e4c4d2c8.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/enterprise-security-company-logo-with-ad-1772814701116-2935710b.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/government-defence-agency-logo-with-offi-1772814701000-5cfc7ea6.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/international-security-organization-logo-1772814701180-8afd6bc1.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/technology-and-defence-sector-company-lo-1772814700960-a609000b.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/intelligence-and-strategic-defence-organ-1772814699968-666bc40f.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/systems-integration-defence-company-logo-1772814699586-000c947b.png"]} "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/professional-defence-contractor-company--1772814700309-e4c4d2c8.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/enterprise-security-company-logo-with-ad-1772814701116-2935710b.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/government-defence-agency-logo-with-offi-1772814701000-5cfc7ea6.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/international-security-organization-logo-1772814701180-8afd6bc1.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/technology-and-defence-sector-company-lo-1772814700960-a609000b.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/intelligence-and-strategic-defence-organ-1772814699968-666bc40f.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZyw3ceDfPaMgBwyZWZXCTlnfu/systems-integration-defence-company-logo-1772814699586-000c947b.png"
]}
showCard={true} showCard={true}
speed={40} speed={40}
/> />
@@ -179,13 +205,15 @@ export default function HomePage() {
socialLinks={[ socialLinks={[
{ {
icon: Linkedin, icon: Linkedin,
href: "https://linkedin.com/company/defenceshield", ariaLabel: "LinkedIn"}, href: "https://linkedin.com/company/defenceshield", ariaLabel: "LinkedIn"
},
{ {
icon: Twitter, icon: Twitter,
href: "https://twitter.com/defenceshield", ariaLabel: "Twitter"}, href: "https://twitter.com/defenceshield", ariaLabel: "Twitter"
},
]} ]}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }