8 Commits

Author SHA1 Message Date
b2f67f088f Merge version_3 into main
Merge version_3 into main
2026-03-05 07:35:40 +00:00
6119515c48 Update src/app/page.tsx 2026-03-05 07:35:36 +00:00
e6bd0973ea Update src/app/layout.tsx 2026-03-05 07:35:36 +00:00
2fe706223e Merge version_2 into main
Merge version_2 into main
2026-03-05 07:33:27 +00:00
d974626b7b Merge version_2 into main
Merge version_2 into main
2026-03-05 07:32:37 +00:00
8c9ba2b072 Merge version_2 into main
Merge version_2 into main
2026-03-05 07:31:24 +00:00
d8a8a00a05 Merge version_2 into main
Merge version_2 into main
2026-03-05 07:24:28 +00:00
52153c8c03 Merge version_2 into main
Merge version_2 into main
2026-03-05 07:23:18 +00:00
2 changed files with 26 additions and 8 deletions

View File

@@ -1,12 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Apex Digital", description: "Digital experiences that drive growth"};
@@ -18,7 +14,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${inter.variable}`}>{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -6,7 +6,7 @@ import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboa
import FeatureBento from "@/components/sections/feature/FeatureBento";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Sparkles, Zap, Globe, TrendingUp } from "lucide-react";
import { Sparkles, Zap, Globe, TrendingUp, Shield, Lock, Cpu } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -59,6 +59,17 @@ export default function HomePage() {
{ icon: TrendingUp, label: "Growth", value: "300%" },
],
},
{
title: "Enterprise Security", description: "Bank-grade security with advanced encryption and compliance", bentoComponent: "3d-stack-cards" as const,
items: [
{ icon: Shield, title: "End-to-End", subtitle: "Encryption", detail: "Military-grade protection" },
{ icon: Lock, title: "Zero Trust", subtitle: "Architecture", detail: "Never trust, always verify" },
{ icon: Cpu, title: "Compliance", subtitle: "Standard", detail: "SOC 2, GDPR, ISO 27001" },
],
},
{
title: "Global Integration", description: "Connect seamlessly with tools and platforms worldwide", bentoComponent: "map" as const,
},
];
const testimonials = [
@@ -174,7 +185,8 @@ export default function HomePage() {
<FeatureBento
features={[
{
title: "Advanced Analytics", description: "Get detailed insights into your business performance", bentoComponent: "globe"},
title: "Advanced Analytics", description: "Get detailed insights into your business performance", bentoComponent: "globe"
},
{
title: "Real-time Collaboration", description: "Work together seamlessly with your team", bentoComponent: "icon-info-cards", items: [
{ icon: Zap, label: "Speed", value: "99.9%" },
@@ -182,6 +194,16 @@ export default function HomePage() {
{ icon: TrendingUp, label: "Growth", value: "300%" },
],
},
{
title: "Enterprise Security", description: "Bank-grade security with advanced encryption and compliance", bentoComponent: "3d-stack-cards", items: [
{ icon: Shield, title: "End-to-End", subtitle: "Encryption", detail: "Military-grade protection" },
{ icon: Lock, title: "Zero Trust", subtitle: "Architecture", detail: "Never trust, always verify" },
{ icon: Cpu, title: "Compliance", subtitle: "Standard", detail: "SOC 2, GDPR, ISO 27001" },
],
},
{
title: "Global Integration", description: "Connect seamlessly with tools and platforms worldwide", bentoComponent: "map"
},
]}
title="Powerful Features"
description="Everything you need to succeed"