Merge version_3 into main #9
@@ -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: `
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user